diff --git a/examples/ncurses/RF24Gateway_ncurses.cpp b/examples/ncurses/RF24Gateway_ncurses.cpp index b7058d7..e9ac56b 100644 --- a/examples/ncurses/RF24Gateway_ncurses.cpp +++ b/examples/ncurses/RF24Gateway_ncurses.cpp @@ -1,21 +1,21 @@ /** -* RF24Gateway NCurses interface - TMRh20 2015 -* This is a generic tool for nodes supporting or combining with RF24Ethernet and/or RF24Network. -* -* The tool provides a simple interface for monitoring information and activity regarding the RF24Gateway:
-* a: Interface statistics from /proc/net/dev
-* b: RF24Mesh address/id assignments
-* c: RF24Network/Radio information
-* d: Active IP connections (optional)
-* -* **Requirements: NCurses** -* Install NCurses: apt-get install libncurses5-dev -* -* **Controls** -* Type 'h' to view the help menu -* -* -*/ + * RF24Gateway NCurses interface - TMRh20 2015 + * This is a generic tool for nodes supporting or combining with RF24Ethernet and/or RF24Network. + * + * The tool provides a simple interface for monitoring information and activity regarding the RF24Gateway:
+ * a: Interface statistics from /proc/net/dev
+ * b: RF24Mesh address/id assignments
+ * c: RF24Network/Radio information
+ * d: Active IP connections (optional)
+ * + * **Requirements: NCurses** + * Install NCurses: apt-get install libncurses5-dev + * + * **Controls** + * Type 'h' to view the help menu + * + * + */ #include #include @@ -141,9 +141,9 @@ int main() { /** - * The gateway handles all IP traffic (marked as EXTERNAL_DATA_TYPE) and passes it to the associated network interface - * RF24Network user payloads are loaded into the user cache - */ + * The gateway handles all IP traffic (marked as EXTERNAL_DATA_TYPE) and passes it to the associated network interface + * RF24Network user payloads are loaded into the user cache + */ if (millis() - mesh_timer > 30000 && mesh.getNodeID()) { //Every 30 seconds, test mesh connectivity diff --git a/examples/ncursesInt/RF24Gateway_ncursesInt.cpp b/examples/ncursesInt/RF24Gateway_ncursesInt.cpp index bf9c213..166b18b 100644 --- a/examples/ncursesInt/RF24Gateway_ncursesInt.cpp +++ b/examples/ncursesInt/RF24Gateway_ncursesInt.cpp @@ -1,21 +1,21 @@ /** -* RF24Gateway NCurses interface - TMRh20 2015-2022 -* This is a generic tool for nodes supporting or combining with RF24Ethernet and/or RF24Network. -* -* The tool provides a simple interface for monitoring information and activity regarding the RF24Gateway:
-* a: Interface statistics from /proc/net/dev
-* b: RF24Mesh address/id assignments
-* c: RF24Network/Radio information
-* d: Active IP connections (optional)
-* -* **Requirements: NCurses** -* Install NCurses: apt-get install libncurses5-dev -* -* **Controls** -* Type 'h' to view the help menu -* -* -*/ + * RF24Gateway NCurses interface - TMRh20 2015-2022 + * This is a generic tool for nodes supporting or combining with RF24Ethernet and/or RF24Network. + * + * The tool provides a simple interface for monitoring information and activity regarding the RF24Gateway:
+ * a: Interface statistics from /proc/net/dev
+ * b: RF24Mesh address/id assignments
+ * c: RF24Network/Radio information
+ * d: Active IP connections (optional)
+ * + * **Requirements: NCurses** + * Install NCurses: apt-get install libncurses5-dev + * + * **Controls** + * Type 'h' to view the help menu + * + * + */ #include #include