diff --git a/.github/workflows/arduino_lint.yml b/.github/workflows/arduino_lint.yml new file mode 100755 index 0000000..4929ff4 --- /dev/null +++ b/.github/workflows/arduino_lint.yml @@ -0,0 +1,11 @@ +name: Arduino lint update action +on: [push, pull_request] +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: arduino/arduino-lint-action@v1 + with: + library-manager: update + compliance: strict diff --git a/keywords.txt b/keywords.txt index 4e213ee..4778188 100755 --- a/keywords.txt +++ b/keywords.txt @@ -2,11 +2,10 @@ # Note: Only ONE true tab-char to separate items! # Syntax Coloring Map -# Datatypes: (KEYWORD1) -# Classes & Namespaces: (KEYWORD2) -# Methods and Functions: (KEYWORD2) -# Structure: (KEYWORD3) -# Constants: (LITERAL1) +# KEYWORD1: Datatypes +# KEYWORD2: Classes, Namespaces, Methods, and Functions +# KEYWORD3: Structure +# LITERAL1: Constants Rdebug KEYWORD2 diff --git a/library.properties b/library.properties index 627dace..cd3df72 100755 --- a/library.properties +++ b/library.properties @@ -1,9 +1,9 @@ name=Rdebug -version=0.1.0 +version=0.2.0 author=Debinix Team maintainer=Debinix Team sentence=The Arduino library provides a unique form of debugging. -paragraph=The Rdebug library defines different debug levels, as in many similar debugging frameworks. Turn these On and Off statements at will. The debugging library is an adaption of Ralph S Bacons original code. It only takes a few minutes to grasp how to use it, and the debugging statements are super-fast since it is based only on macros. +paragraph=The Rdebug library defines different debug levels (OFF, ON, DEBUG, INFO, WARN, and ERROR), as in many similar debugging frameworks. Turn these statements On and Off with a #define. It only takes a few minutes to grasp how to use it, and the debugging statements are super-fast since it is based only on macros. category=Other url=https://github.com/berrak/Rdebug architectures=* diff --git a/src/Rdebug.cpp b/src/Rdebug.cpp index a2c2ea4..3f91759 100644 --- a/src/Rdebug.cpp +++ b/src/Rdebug.cpp @@ -3,7 +3,6 @@ * The Arduino library provides a unique form of debugging. * * Copyright (c) 2021 Ralph Bacon - * https://github.com/RalphBacon/224-Superior-Serial.print-statements * * Adapted and modified original code. * Copyright (C) 2022 Debinix Team diff --git a/src/Rdebug.h b/src/Rdebug.h index d75b84b..3b0c431 100644 --- a/src/Rdebug.h +++ b/src/Rdebug.h @@ -3,7 +3,6 @@ * The Arduino library provides a unique form of debugging. * * Copyright (c) 2021 Ralph Bacon - * https://github.com/RalphBacon/224-Superior-Serial.print-statements * * Adapted and modified original code. * Copyright (C) 2022 Debinix Team