From aacfce081ea13e7934e52d51cda409f4004a7a80 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 3 Oct 2015 11:03:42 -0600 Subject: [PATCH] Fix several cosmetic, C coding style issues --- examples/ajoystick/ajoy_main.c | 4 +- examples/buttons/buttons_main.c | 2 +- examples/cc3000/board.h | 215 +++++++++++++----------- examples/djoystick/djoy_main.c | 4 +- examples/elf/tests/errno/errno.c | 4 +- examples/elf/tests/task/task.c | 2 +- examples/ftpc/ftpc_cmds.c | 2 +- examples/ltdc/ltdc.h | 2 +- examples/nettest/nettest.c | 2 +- examples/nxflat/tests/errno/errno.c | 4 +- examples/nxflat/tests/hello/hello.c | 12 +- examples/nxflat/tests/task/task.c | 2 +- examples/nxhello/nxhello_bkgd.c | 2 +- examples/nximage/nximage_bitmap.c | 2 +- examples/nxlines/nxlines_bkgd.c | 2 +- examples/ostest/sigprocmask.c | 6 +- examples/pashello/hello.h | 4 +- examples/pwm/pwm_main.c | 6 +- examples/relays/relays_main.c | 2 +- examples/romfs/romfs_testdir.h | 4 +- examples/watchdog/watchdog_main.c | 6 +- graphics/tiff/tiff_initialize.c | 6 +- graphics/tiff/tiff_internal.h | 13 +- graphics/traveler/src/trv_graphicfile.c | 4 +- graphics/traveler/src/trv_main.c | 2 +- graphics/traveler/src/trv_rayrend.c | 46 ++--- graphics/traveler/src/trv_texturefile.c | 4 +- graphics/traveler/src/trv_world.c | 2 +- graphics/traveler/tools/misc/mktrig.c | 2 +- graphics/traveler/tools/misc/pll2txt.c | 6 +- graphics/traveler/tools/misc/txt2pll.c | 6 +- include/modbus/mb.h | 7 + interpreters/bas/bas_fs.c | 2 +- interpreters/bas/bas_token.c | 17 +- interpreters/ficl/src/nuttx.c | 46 ++--- modbus/rtu/mbrtu.c | 2 +- modbus/tcp/mbtcp.c | 2 +- netutils/ftpc/ftpc_transfer.c | 4 +- netutils/ftpd/ftpd.c | 4 +- netutils/pppd/ppp.c | 2 +- nshlib/nsh_fscmds.c | 10 +- nshlib/nsh_netcmds.c | 10 +- nshlib/nsh_timcmds.c | 21 +-- nshlib/nsh_usbconsole.c | 2 +- nshlib/nsh_usbkeyboard.c | 2 +- system/cu/cu_main.c | 2 +- system/netdb/netdb_main.c | 2 +- system/zmodem/zm_send.c | 2 +- 48 files changed, 278 insertions(+), 239 deletions(-) diff --git a/examples/ajoystick/ajoy_main.c b/examples/ajoystick/ajoy_main.c index 5d02cc9c0..c047d2555 100644 --- a/examples/ajoystick/ajoy_main.c +++ b/examples/ajoystick/ajoy_main.c @@ -114,8 +114,8 @@ static b16_t g_ybslope; static const char *g_ajoynames[AJOY_NBUTTONS] = { - "SELECT", "FIRE", "JUMP", "BUTTON 4", - "BUTTON 5", "BUTTON 6", "BUTTON 7", "BUTTON 8", + "SELECT", "FIRE", "JUMP", "BUTTON 4", + "BUTTON 5", "BUTTON 6", "BUTTON 7", "BUTTON 8", }; /**************************************************************************** diff --git a/examples/buttons/buttons_main.c b/examples/buttons/buttons_main.c index 9cb9e588d..71fc54ec0 100644 --- a/examples/buttons/buttons_main.c +++ b/examples/buttons/buttons_main.c @@ -183,7 +183,7 @@ static int button7_handler(int irq, FAR void *context); * Private Data ****************************************************************************/ - /* Button Names */ +/* Button Names */ static const struct button_info_s g_buttoninfo[NUM_BUTTONS] = { diff --git a/examples/cc3000/board.h b/examples/cc3000/board.h index 883404d3e..df1d87085 100644 --- a/examples/cc3000/board.h +++ b/examples/cc3000/board.h @@ -1,31 +1,36 @@ /**************************************************************************** -* -* This file is part of the ArduinoCC3000 library. + * This file is part of the ArduinoCC3000 library. + * Version 1.0.1b + * + * Copyright (C) 2013 Chris Magagna - cmagagna@yahoo.com + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * Don't sue me if my code blows up your board and burns down your house + * + * This file is the main module for the Arduino CC3000 library. + * Your program must call CC3000_Init() before any other API calls. + * + ****************************************************************************/ -* Version 1.0.1b -* -* Copyright (C) 2013 Chris Magagna - cmagagna@yahoo.com -* -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions -* are met: -* -* Don't sue me if my code blows up your board and burns down your house -* -* This file is the main module for the Arduino CC3000 library. -* Your program must call CC3000_Init() before any other API calls. -* -****************************************************************************/ - -/* - Some things are different for the Teensy 3.0, so set a flag if we're using - that hardware. -*/ +/**************************************************************************** + * Included Files + ****************************************************************************/ #include +/**************************************************************************** + * Pre-processor Definitions + ****************************************************************************/ + +/* Some things are different for the Teensy 3.0, so set a flag if we're using + * that hardware. + */ + #if defined(__arm__) && defined(CORE_TEENSY) && defined(__MK20DX128__) -#define TEENSY3 1 +# define TEENSY3 1 #endif /* I used the Teensy 3.0 to get the Arduino CC3000 library working but the @@ -35,9 +40,9 @@ your wiring is OK then try changing this. */ #ifdef TEENSY3 -#define USE_HARDWARE_SPI false +#define USE_HARDWARE_SPI false #else -#define USE_HARDWARE_SPI true +#define USE_HARDWARE_SPI true #endif // These are the Arduino pins that connect to the CC3000 @@ -48,102 +53,114 @@ #ifndef TEENSY3 -#define WLAN_CS 10 // Arduino pin connected to CC3000 WLAN_SPI_CS -#define WLAN_EN 9 // Arduino pin connected to CC3000 VBAT_SW_EN -#define WLAN_IRQ 3 // Arduino pin connected to CC3000 WLAN_SPI_IRQ -#define WLAN_IRQ_INTNUM 1 // The attachInterrupt() number that corresponds - // to WLAN_IRQ -#define WLAN_MOSI MOSI -#define WLAN_MISO MISO -#define WLAN_SCK SCK +#define WLAN_CS 10 // Arduino pin connected to CC3000 WLAN_SPI_CS +#define WLAN_EN 9 // Arduino pin connected to CC3000 VBAT_SW_EN +#define WLAN_IRQ 3 // Arduino pin connected to CC3000 WLAN_SPI_IRQ +#define WLAN_IRQ_INTNUM 1 // The attachInterrupt() number that corresponds + // to WLAN_IRQ +#define WLAN_MOSI MOSI +#define WLAN_MISO MISO +#define WLAN_SCK SCK #else -#define WLAN_CS 25 -#define WLAN_MISO 26 -#define WLAN_IRQ 27 -#define WLAN_IRQ_INTNUM 27 // On the Teensy 3.0 the interrupt # is the same as the pin # -#define WLAN_MOSI 28 -#define WLAN_SCK 29 -#define WLAN_EN 30 +#define WLAN_CS 25 +#define WLAN_MISO 26 +#define WLAN_IRQ 27 +#define WLAN_IRQ_INTNUM 27 // On the Teensy 3.0 the interrupt # is the same as the pin # +#define WLAN_MOSI 28 +#define WLAN_SCK 29 +#define WLAN_EN 30 #endif -/* - The timing between setting the CS pin and reading the IRQ pin is very - tight on the CC3000, and sometimes the default Arduino digitalRead() - and digitalWrite() functions are just too slow. - - For many of the CC3000 library functions this isn't a big deal because the - IRQ pin is tied to an interrupt routine but some of them of them disable - the interrupt routine and read the pins directly. Because digitalRead() - / Write() are so slow once in a while the Arduino will be in the middle of - its pin code and the CC3000 will flip another pin's state and it will be - missed, and everything locks up. - - The upshot of all of this is we need to read & write the pin states - directly, which is very fast compared to the built in Arduino functions. - - The Teensy 3.0's library has built in macros called digitalReadFast() - & digitalWriteFast() that compile down to direct port manipulations but - are still readable, so use those if possible. - - There's a digitalReadFast() / digitalWriteFast() library for Arduino but - it looks like it hasn't been updated since 2010 so I think it's best to - just use the direct port manipulations. -*/ +/* The timing between setting the CS pin and reading the IRQ pin is very + * tight on the CC3000, and sometimes the default Arduino digitalRead() + * and digitalWrite() functions are just too slow. + * + * For many of the CC3000 library functions this isn't a big deal because the + * IRQ pin is tied to an interrupt routine but some of them of them disable + * the interrupt routine and read the pins directly. Because digitalRead() + * / Write() are so slow once in a while the Arduino will be in the middle of + * its pin code and the CC3000 will flip another pin's state and it will be + * missed, and everything locks up. + * + * The upshot of all of this is we need to read & write the pin states + * directly, which is very fast compared to the built in Arduino functions. + * + * The Teensy 3.0's library has built in macros called digitalReadFast() + * & digitalWriteFast() that compile down to direct port manipulations but + * are still readable, so use those if possible. + * + * There's a digitalReadFast() / digitalWriteFast() library for Arduino but + * it looks like it hasn't been updated since 2010 so I think it's best to + * just use the direct port manipulations. + */ #ifdef TEENSY3 -#define Read_CC3000_IRQ_Pin() digitalReadFast(WLAN_IRQ) -#define Set_CC3000_CS_NotActive() digitalWriteFast(WLAN_CS, HIGH) -#define Set_CC3000_CS_Active() digitalWriteFast(WLAN_CS, LOW) +#define Read_CC3000_IRQ_Pin() digitalReadFast(WLAN_IRQ) +#define Set_CC3000_CS_NotActive() digitalWriteFast(WLAN_CS, HIGH) +#define Set_CC3000_CS_Active() digitalWriteFast(WLAN_CS, LOW) #else // This is hardcoded for an ATMega328 and pin 3. You will need to change this // for other MCUs or pins -#define Read_CC3000_IRQ_Pin() ((PIND & B00001000) ? 1 : 0) + +#define Read_CC3000_IRQ_Pin() ((PIND & B00001000) ? 1 : 0) // This is hardcoded for an ATMega328 and pin 10. You will need to change this // for other MCUs or pins -#define Set_CC3000_CS_NotActive() PORTB |= B00000100 -#define Set_CC3000_CS_Active() PORTB &= B11111011 +#define Set_CC3000_CS_NotActive() PORTB |= B00000100 +#define Set_CC3000_CS_Active() PORTB &= B11111011 #endif -#define MAC_ADDR_LEN 6 -#define DISABLE (0) -#define ENABLE (1) +#define MAC_ADDR_LEN 6 +#define DISABLE (0) +#define ENABLE (1) -//AES key "smartconfigAES16" -//const uint8_t smartconfigkey[] = {0x73,0x6d,0x61,0x72,0x74,0x63,0x6f,0x6e,0x66,0x69,0x67,0x41,0x45,0x53,0x31,0x36}; +/**************************************************************************** + * Public Data + ****************************************************************************/ + +#if 0 +/* AES key "smartconfigAES16" */ + +const uint8_t smartconfigkey[] = + { + 0x73, 0x6d, 0x61, 0x72, 0x74, 0x63, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x41, 0x45, 0x53, 0x31, 0x36 + }; +#endif /* If you uncomment the line below the library will leave out a lot of the - higher level functions but use a lot less memory. From: + * higher level functions but use a lot less memory. From: + * + * http://processors.wiki.ti.com/index.php/Tiny_Driver_Support + * + * CC3000's new driver has flexible memory compile options. + * + * This feature comes in handy when we want to use a limited RAM size MCU. + * + * Using The Tiny Driver Compilation option will create a tiny version of our + * host driver with lower data, stack and code consumption. + * + * By enabling this feature, host driver's RAM consumption can be reduced to + * minimum of 251 bytes. + * + * The Tiny host driver version will limit the host driver API to the most + * essential ones. + * + * Code size depends on actual APIs used. + * + * RAM size depends on the largest packet sent and received. + * + * CC3000 can now be used with ultra low cost MCUs, consuming 251 byte of RAM + * and 2K to 6K byte of code size, depending on the API usage. + */ - http://processors.wiki.ti.com/index.php/Tiny_Driver_Support - - CC3000's new driver has flexible memory compile options. - - This feature comes in handy when we want to use a limited RAM size MCU. - - Using The Tiny Driver Compilation option will create a tiny version of our - host driver with lower data, stack and code consumption. - - By enabling this feature, host driver's RAM consumption can be reduced to - minimum of 251 bytes. - - The Tiny host driver version will limit the host driver API to the most - essential ones. - - Code size depends on actual APIs used. - - RAM size depends on the largest packet sent and received. - - CC3000 can now be used with ultra low cost MCUs, consuming 251 byte of RAM - and 2K to 6K byte of code size, depending on the API usage. */ - -//#define CC3000_TINY_DRIVER 1 +//#define CC3000_TINY_DRIVER 1 extern uint8_t asyncNotificationWaiting; extern long lastAsyncEvent; @@ -155,4 +172,8 @@ extern volatile unsigned long OkToDoShutDown; extern volatile unsigned long ulCC3000DHCP_configured; extern volatile uint8_t ucStopSmartConfig; +/**************************************************************************** + * Public Function Prototypes + ****************************************************************************/ + void CC3000_Init(void); diff --git a/examples/djoystick/djoy_main.c b/examples/djoystick/djoy_main.c index 8d33963bf..bf4139228 100644 --- a/examples/djoystick/djoy_main.c +++ b/examples/djoystick/djoy_main.c @@ -95,7 +95,7 @@ static djoy_buttonset_t g_djoylast; static const char *g_djoynames[DJOY_NDISCRETES] = { - "UP", "DOWN", "LEFT", "RIGHT", "SELECT", "FIRE", "JUMP", "RUN" + "UP", "DOWN", "LEFT", "RIGHT", "SELECT", "FIRE", "JUMP", "RUN" }; /**************************************************************************** @@ -240,7 +240,7 @@ int djoy_main(int argc, char *argv[]) (long)nread, sizeof(djoy_buttonset_t)); goto errout_with_fd; } - + /* Show the set of joystick discretes that we just read */ printf("Read set\n"); diff --git a/examples/elf/tests/errno/errno.c b/examples/elf/tests/errno/errno.c index adc88ddd3..f02dab7d5 100644 --- a/examples/elf/tests/errno/errno.c +++ b/examples/elf/tests/errno/errno.c @@ -68,7 +68,7 @@ int main(int argc, char **argv) if (test_stream) { fprintf(stderr, "Hmm... Delete \"%s\" and try this again\n", - g_nonexistent); + g_nonexistent); exit(1); } @@ -77,7 +77,7 @@ int main(int argc, char **argv) */ fprintf(stderr, "We failed to open \"%s!\" errno is %d\n", - g_nonexistent, errno); + g_nonexistent, errno); return 0; } diff --git a/examples/elf/tests/task/task.c b/examples/elf/tests/task/task.c index a947aac73..b26e71e4d 100644 --- a/examples/elf/tests/task/task.c +++ b/examples/elf/tests/task/task.c @@ -67,7 +67,7 @@ static char no_name[] = ""; * a relocation type that is not supported by ELF is generated by GCC. */ - int child_task(int argc, char **argv) +int child_task(int argc, char **argv) { printf("Child: execv was successful!\n"); printf("Child: argc=%d\n", argc); diff --git a/examples/ftpc/ftpc_cmds.c b/examples/ftpc/ftpc_cmds.c index 15e8ffd19..1a51867d3 100644 --- a/examples/ftpc/ftpc_cmds.c +++ b/examples/ftpc/ftpc_cmds.c @@ -243,7 +243,7 @@ int cmd_rhelp(SESSION handle, int argc, char **argv) free(msg); } - return ret; + return ret; } /**************************************************************************** diff --git a/examples/ltdc/ltdc.h b/examples/ltdc/ltdc.h index 582583bff..04684f797 100644 --- a/examples/ltdc/ltdc.h +++ b/examples/ltdc/ltdc.h @@ -112,7 +112,7 @@ static const uint32_t g_rgb16[LTDC_EXAMPLE_NCOLORS] = /**************************************************************************** * Public Functions -****************************************************************************/ + ****************************************************************************/ void ltdc_clrcolor(uint8_t *color, uint8_t value, size_t size); int ltdc_cmpcolor(uint8_t *color1, uint8_t *color2, size_t size); diff --git a/examples/nettest/nettest.c b/examples/nettest/nettest.c index 6b63d244b..13605bec3 100644 --- a/examples/nettest/nettest.c +++ b/examples/nettest/nettest.c @@ -213,7 +213,7 @@ int nettest_main(int argc, char *argv[]) #ifdef CONFIG_EXAMPLES_NETTEST_INIT /* Initialize the network */ - netest_initialize(); + netest_initialize(); #endif #if defined(CONFIG_EXAMPLES_NETTEST_LOOPBACK) diff --git a/examples/nxflat/tests/errno/errno.c b/examples/nxflat/tests/errno/errno.c index 08a15808a..dcadb1993 100644 --- a/examples/nxflat/tests/errno/errno.c +++ b/examples/nxflat/tests/errno/errno.c @@ -68,7 +68,7 @@ int main(int argc, char **argv) if (test_stream) { fprintf(stderr, "Hmm... Delete \"%s\" and try this again\n", - g_nonexistent); + g_nonexistent); exit(1); } @@ -77,7 +77,7 @@ int main(int argc, char **argv) */ fprintf(stderr, "We failed to open \"%s!\" errno is %d\n", - g_nonexistent, errno); + g_nonexistent, errno); return 0; } diff --git a/examples/nxflat/tests/hello/hello.c b/examples/nxflat/tests/hello/hello.c index 8ec4e019a..284f268df 100644 --- a/examples/nxflat/tests/hello/hello.c +++ b/examples/nxflat/tests/hello/hello.c @@ -63,13 +63,13 @@ int main(int argc, char **argv) { printf("argv[%d]\t= ", i); if (argv[i]) - { - printf("(0x%p) \"%s\"\n", argv[i], argv[i]); - } + { + printf("(0x%p) \"%s\"\n", argv[i], argv[i]); + } else - { - printf("NULL?\n"); - } + { + printf("NULL?\n"); + } } printf("argv[%d]\t= 0x%p\n", argc, argv[argc]); diff --git a/examples/nxflat/tests/task/task.c b/examples/nxflat/tests/task/task.c index 2ffc1565a..b30626028 100644 --- a/examples/nxflat/tests/task/task.c +++ b/examples/nxflat/tests/task/task.c @@ -67,7 +67,7 @@ static char no_name[] = ""; * a relocation type that is not supported by NXFLAT is generated by GCC. */ - int child_task(int argc, char **argv) +int child_task(int argc, char **argv) { printf("Child: execv was successful!\n"); printf("Child: argc=%d\n", argc); diff --git a/examples/nxhello/nxhello_bkgd.c b/examples/nxhello/nxhello_bkgd.c index 6065dba11..4be77d61b 100644 --- a/examples/nxhello/nxhello_bkgd.c +++ b/examples/nxhello/nxhello_bkgd.c @@ -327,7 +327,7 @@ static void nxhello_initglyph(FAR uint8_t *glyph, uint8_t height, #endif } - /**************************************************************************** +/**************************************************************************** * Public Functions ****************************************************************************/ diff --git a/examples/nximage/nximage_bitmap.c b/examples/nximage/nximage_bitmap.c index c750aab29..208b02cea 100644 --- a/examples/nximage/nximage_bitmap.c +++ b/examples/nximage/nximage_bitmap.c @@ -1074,7 +1074,7 @@ static const struct pix_run_s g_nuttx[] = { 75, 0}, { 1, 5}, { 2, 4}, { 1, 3}, { 1, 163}, { 1, 6}, { 1, 4}, { 1, 5}, /* Row 158 */ { 77, 0}, { 76, 0}, { 1, 5}, { 4, 4}, { 1, 5}, { 78, 0} /* Row 159 */ - }; +}; #elif CONFIG_EXAMPLES_NXIMAGE_BPP == 16 diff --git a/examples/nxlines/nxlines_bkgd.c b/examples/nxlines/nxlines_bkgd.c index f377be89f..4cfe94b1a 100644 --- a/examples/nxlines/nxlines_bkgd.c +++ b/examples/nxlines/nxlines_bkgd.c @@ -197,7 +197,7 @@ static void nxlines_kbdin(NXWINDOW hwnd, uint8_t nch, FAR const uint8_t *ch, } #endif - /**************************************************************************** +/**************************************************************************** * Public Functions ****************************************************************************/ diff --git a/examples/ostest/sigprocmask.c b/examples/ostest/sigprocmask.c index d24fc3878..4e752d12e 100644 --- a/examples/ostest/sigprocmask.c +++ b/examples/ostest/sigprocmask.c @@ -126,7 +126,7 @@ void sigprocmask_test(void) printf("sigprocmask_test: ERROR sigprocmask failed: %d\n", errcode); goto errout_with_mask; } - + /* It should be the same as newmask */ if (memcmp(&currmask, &newmask, sizeof(sigset_t)) != 0) @@ -185,7 +185,7 @@ void sigprocmask_test(void) printf("sigprocmask_test: ERROR sigprocmask failed: %d\n", errcode); goto errout_with_mask; } - + /* It should be the same as newmask */ if (memcmp(&currmask, &newmask, sizeof(sigset_t)) != 0) @@ -193,7 +193,7 @@ void sigprocmask_test(void) printf("sigprocmask_test: ERROR unexpected sigprocmask\n"); goto errout_with_mask; } - + ret = sigprocmask(SIG_SETMASK, &saved, NULL); if (ret != OK) { diff --git a/examples/pashello/hello.h b/examples/pashello/hello.h index 818e5e4a5..b2a5e64a8 100644 --- a/examples/pashello/hello.h +++ b/examples/pashello/hello.h @@ -1,4 +1,5 @@ -unsigned char hello_pex[] = { +unsigned char hello_pex[] = +{ 0x50, 0x4f, 0x46, 0x46, 0x01, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, @@ -20,4 +21,5 @@ unsigned char hello_pex[] = { 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x6e, 0x6f, 0x00, 0x2e, 0x73, 0x74, 0x72, 0x74, 0x61, 0x62, 0x00 }; + unsigned int hello_pex_len = 232; diff --git a/examples/pwm/pwm_main.c b/examples/pwm/pwm_main.c index 84c78c329..c22756838 100644 --- a/examples/pwm/pwm_main.c +++ b/examples/pwm/pwm_main.c @@ -388,9 +388,9 @@ int pwm_main(int argc, char *argv[]) } } - close(fd); - fflush(stdout); - return OK; + close(fd); + fflush(stdout); + return OK; errout_with_dev: close(fd); diff --git a/examples/relays/relays_main.c b/examples/relays/relays_main.c index f254e812a..af1f7bf41 100644 --- a/examples/relays/relays_main.c +++ b/examples/relays/relays_main.c @@ -61,7 +61,7 @@ # define CONFIG_EXAMPLES_RELAYS_NRELAYS 2 #endif - /**************************************************************************** +/**************************************************************************** * Private Types ****************************************************************************/ diff --git a/examples/romfs/romfs_testdir.h b/examples/romfs/romfs_testdir.h index 53f93105c..b0d10de66 100644 --- a/examples/romfs/romfs_testdir.h +++ b/examples/romfs/romfs_testdir.h @@ -1,4 +1,5 @@ -unsigned char testdir_img[] = { +unsigned char testdir_img[] = +{ 0x2d, 0x72, 0x6f, 0x6d, 0x31, 0x66, 0x73, 0x2d, 0x00, 0x00, 0x02, 0x60, 0x27, 0x43, 0x4a, 0x8a, 0x52, 0x4f, 0x4d, 0x46, 0x53, 0x5f, 0x54, 0x65, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, @@ -86,4 +87,5 @@ unsigned char testdir_img[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; + unsigned int testdir_img_len = 1024; diff --git a/examples/watchdog/watchdog_main.c b/examples/watchdog/watchdog_main.c index 9390279bf..95ff07b83 100644 --- a/examples/watchdog/watchdog_main.c +++ b/examples/watchdog/watchdog_main.c @@ -354,9 +354,9 @@ int wdog_main(int argc, char *argv[]) goto errout_with_dev; } - close(fd); - fflush(stdout); - return OK; + close(fd); + fflush(stdout); + return OK; errout_with_dev: close(fd); diff --git a/graphics/tiff/tiff_initialize.c b/graphics/tiff/tiff_initialize.c index 7cd1f66f8..645743164 100644 --- a/graphics/tiff/tiff_initialize.c +++ b/graphics/tiff/tiff_initialize.c @@ -321,10 +321,10 @@ static inline int tiff_putheader(FAR struct tiff_info_s *info) return ret; } - /* Two pad bytes following the header */ + /* Two pad bytes following the header */ - ret = tiff_putint16(info->outfd, 0); - return ret; + ret = tiff_putint16(info->outfd, 0); + return ret; } /**************************************************************************** diff --git a/graphics/tiff/tiff_internal.h b/graphics/tiff/tiff_internal.h index ac7f91381..f03ba5aae 100644 --- a/graphics/tiff/tiff_internal.h +++ b/graphics/tiff/tiff_internal.h @@ -114,7 +114,7 @@ extern "C" * ****************************************************************************/ -EXTERN ssize_t tiff_read(int fd, FAR void *buffer, size_t count); +ssize_t tiff_read(int fd, FAR void *buffer, size_t count); /**************************************************************************** * Name: tiff_write @@ -132,7 +132,7 @@ EXTERN ssize_t tiff_read(int fd, FAR void *buffer, size_t count); * ****************************************************************************/ -EXTERN int tiff_write(int fd, FAR const void *buffer, size_t count); +int tiff_write(int fd, FAR const void *buffer, size_t count); /**************************************************************************** * Name: tiff_putint16 @@ -149,7 +149,7 @@ EXTERN int tiff_write(int fd, FAR const void *buffer, size_t count); * ****************************************************************************/ -EXTERN int tiff_putint16(int fd, uint16_t value); +int tiff_putint16(int fd, uint16_t value); /**************************************************************************** * Name: tiff_putint32 @@ -166,7 +166,7 @@ EXTERN int tiff_putint16(int fd, uint16_t value); * ****************************************************************************/ -EXTERN int tiff_putint32(int fd, uint32_t value); +int tiff_putint32(int fd, uint32_t value); /**************************************************************************** * Name: tiff_putstring @@ -184,7 +184,7 @@ EXTERN int tiff_putint32(int fd, uint32_t value); * ****************************************************************************/ -EXTERN int tiff_putstring(int fd, FAR const char *string, int len); +int tiff_putstring(int fd, FAR const char *string, int len); /**************************************************************************** * Name: tiff_wordalign @@ -201,7 +201,7 @@ EXTERN int tiff_putstring(int fd, FAR const char *string, int len); * ****************************************************************************/ -EXTERN ssize_t tiff_wordalign(int fd, size_t size); +ssize_t tiff_wordalign(int fd, size_t size); #undef EXTERN #if defined(__cplusplus) @@ -209,4 +209,3 @@ EXTERN ssize_t tiff_wordalign(int fd, size_t size); #endif #endif /* __APPS_GRAPHICS_TIFF_TIFF_INTERNAL_H */ - diff --git a/graphics/traveler/src/trv_graphicfile.c b/graphics/traveler/src/trv_graphicfile.c index f1779b6b3..a8bee0aed 100644 --- a/graphics/traveler/src/trv_graphicfile.c +++ b/graphics/traveler/src/trv_graphicfile.c @@ -83,7 +83,7 @@ FAR struct trv_graphicfile_s *tvr_graphicfile_read(char *filename) * REVISIT: Here would be the place where we would decide on the format of * the graphic file. Here we just assume that the file is PCX. */ - + gfile = trv_load_pcx(fp, filename); if (gfile == NULL) { @@ -123,7 +123,7 @@ FAR struct trv_graphicfile_s *trv_graphicfile_new(void) * Description: * Free the graphic file structure after also freeing in additional * resources attached to the structure. - + ****************************************************************************/ void trv_graphicfile_free(FAR struct trv_graphicfile_s *gfile) diff --git a/graphics/traveler/src/trv_main.c b/graphics/traveler/src/trv_main.c index b17027530..9ef348214 100644 --- a/graphics/traveler/src/trv_main.c +++ b/graphics/traveler/src/trv_main.c @@ -283,7 +283,7 @@ int traveler_main(int argc, char *argv[]) switch (*ptr) { case 'p' : - wldpath = ptr++; + wldpath = ptr++; break; default: diff --git a/graphics/traveler/src/trv_rayrend.c b/graphics/traveler/src/trv_rayrend.c index dd76d9370..876c7b57a 100644 --- a/graphics/traveler/src/trv_rayrend.c +++ b/graphics/traveler/src/trv_rayrend.c @@ -210,7 +210,7 @@ static void trv_rend_zcell(uint8_t row, uint8_t col, uint8_t height, uint8_t wid endcol = col + width; endrow = row + height; - + /* Calculate the horizontal interpolation values */ /* This is the H starting position (first row, first column) */ @@ -221,7 +221,7 @@ static void trv_rend_zcell(uint8_t row, uint8_t col, uint8_t height, uint8_t wid hcolstep = TDIV((g_ray_hit[row][endcol].xpos - g_ray_hit[row][col].xpos), width, scale); - + /* This is the change in xpos per column in the last row */ tmpcolstep = @@ -264,7 +264,7 @@ static void trv_rend_zcell(uint8_t row, uint8_t col, uint8_t height, uint8_t wid vrowstep = TDIV((g_ray_hit[endrow][col].ypos - g_ray_hit[row][col].ypos), height, scale); - + /* Determine the palette mapping table zone for each row */ if (IS_SHADED(g_ray_hit[row][col].rect)) @@ -386,7 +386,7 @@ static void trv_rend_zrow(uint8_t row, uint8_t col, uint8_t width) { palptr = GET_PALPTR(0); } - + /* Within this function, all references to width are really * (width-1) */ @@ -396,7 +396,7 @@ static void trv_rend_zrow(uint8_t row, uint8_t col, uint8_t width) /* Get the index to the right side */ endcol = col + width; - + /* Calculate the horizontal interpolation values */ /* This is the H starting position (first column) */ @@ -407,18 +407,18 @@ static void trv_rend_zrow(uint8_t row, uint8_t col, uint8_t width) hcolstep = TDIV((g_ray_hit[row][endcol].xpos - g_ray_hit[row][col].xpos), width, scale); - + /* Calculate the vertical interpolation values */ /* This is the V starting position (first column) */ ypos.w = TALIGN(g_ray_hit[row][col].ypos, scale); - + /* This is the change in ypos per column */ vcolstep = TDIV((g_ray_hit[row][endcol].ypos - g_ray_hit[row][col].ypos), width, scale); - + /* Interpolate to texture each column in the row */ for (j = col; j <= endcol; j++) @@ -443,7 +443,7 @@ static void trv_rend_zcol(uint8_t row, uint8_t col, uint8_t height) uint8_t i, endrow; FAR uint8_t *palptr; FAR uint8_t *outpixel; - uint8_t scale; + uint8_t scale; FAR trv_pixel_t *texture; FAR struct trv_bitmap_s *bmp; union tex_ndx_u xpos; @@ -493,7 +493,7 @@ static void trv_rend_zcol(uint8_t row, uint8_t col, uint8_t height) { palptr = GET_PALPTR(0); } - + /* Within this function, all references to height are really * (height-1) */ @@ -519,13 +519,13 @@ static void trv_rend_zcol(uint8_t row, uint8_t col, uint8_t height) /* This is the V starting position (first row) */ ypos.w = TALIGN(g_ray_hit[row][col].ypos, scale); - + /* This is the change in ypos for each row */ vrowstep = TDIV((g_ray_hit[endrow][col].ypos - g_ray_hit[row][col].ypos), height, scale); - + /* Now, interpolate to texture each row (vertical component) */ for (i = row; i <= endrow; i++) @@ -678,7 +678,7 @@ static void trv_rend_wall(uint8_t row, uint8_t col, { palptr = GET_PALPTR(0); } - + /* Within this function, all references to height and width are really * (height-1) and (width-1) */ @@ -701,12 +701,12 @@ static void trv_rend_wall(uint8_t row, uint8_t col, hcolstep = TDIV((g_ray_hit[row][endcol].xpos - g_ray_hit[row][col].xpos), width, scale); - + /* Calculate the vertical interpolation values */ /* This is the V starting position (first row, first column) */ vstart = TALIGN(g_ray_hit[row][col].ypos, scale); - + /* This is the change in ypos per column in the first row */ vcolstep = @@ -728,7 +728,7 @@ static void trv_rend_wall(uint8_t row, uint8_t col, vrowstep = TDIV((g_ray_hit[endrow][col].ypos - g_ray_hit[row][col].ypos), height, scale); - + /* Now, interpolate to texture each row (vertical component) */ for (i = row; i <= endrow; i++) @@ -855,7 +855,7 @@ static void trv_rend_wallrow(uint8_t row, uint8_t col, uint8_t width) { palptr = GET_PALPTR(0); } - + /* Within this function, all references to width are really * (width-1) */ @@ -865,7 +865,7 @@ static void trv_rend_wallrow(uint8_t row, uint8_t col, uint8_t width) /* Get the index to the right side */ endcol = col + width; - + /* Calculate the horizontal interpolation values */ /* This is the H starting position (first column) */ @@ -881,13 +881,13 @@ static void trv_rend_wallrow(uint8_t row, uint8_t col, uint8_t width) /* This is the V starting position (first column) */ ypos.w = TALIGN(g_ray_hit[row][col].ypos, scale); - + /* This is the change in ypos per column */ vcolstep = TDIV((g_ray_hit[row][endcol].ypos - g_ray_hit[row][col].ypos), width, scale); - + /* Interpolate to texture each column in the row */ for (j = col; j <= endcol; j++) @@ -895,7 +895,7 @@ static void trv_rend_wallrow(uint8_t row, uint8_t col, uint8_t width) /* Extract the pixel from the texture */ inpixel = texture[TNDX(xpos.s.i, ypos.s.i, tsize, tmask)]; - + /* If this is an INVISIBLE_PIXEL in a TRANSPARENT_WALL, then * we will have to take some pretty extreme measures to get the * correct value of the pixel @@ -991,7 +991,7 @@ static void trv_rend_wallcol(uint8_t row, uint8_t col, uint8_t height) { palptr = GET_PALPTR(0); } - + /* Within this function, all references to height are really * (height-1) */ @@ -1010,7 +1010,7 @@ static void trv_rend_wallcol(uint8_t row, uint8_t col, uint8_t height) /* This is the V starting position (first row, first column) */ ypos.w = TALIGN(g_ray_hit[row][col].ypos, scale); - + /* This is the change in ypos for each row */ vrowstep = diff --git a/graphics/traveler/src/trv_texturefile.c b/graphics/traveler/src/trv_texturefile.c index fe96c770c..37f7650a9 100644 --- a/graphics/traveler/src/trv_texturefile.c +++ b/graphics/traveler/src/trv_texturefile.c @@ -140,7 +140,7 @@ trv_new_texture(uint16_t width, uint16_t height) bitmap->w = width; bitmap->h = height; bitmap->log2h = log2h; - + return bitmap; } @@ -162,7 +162,7 @@ static void trv_quantize_texture(FAR struct trv_graphicfile_s *gfile, for (y = gfile->height - 1; y >= 0; y--) { pixel = trv_graphicfile_pixel(gfile, x, y); - *destpixel++ = trv_color_rgb2pixel(&pixel); + *destpixel++ = trv_color_rgb2pixel(&pixel); } } } diff --git a/graphics/traveler/src/trv_world.c b/graphics/traveler/src/trv_world.c index 1a636d17b..d9ce2efd7 100644 --- a/graphics/traveler/src/trv_world.c +++ b/graphics/traveler/src/trv_world.c @@ -449,7 +449,7 @@ int trv_world_create(FAR const char *wldpath, FAR const char *wldfile) if (!inihandle) { fprintf(stderr, "ERROR: Could not open INI file=\"%s/%s\"\n", - wldpath, wldfile); + wldpath, wldfile); return -ENOENT; } diff --git a/graphics/traveler/tools/misc/mktrig.c b/graphics/traveler/tools/misc/mktrig.c index 15073daf5..f245c11bd 100644 --- a/graphics/traveler/tools/misc/mktrig.c +++ b/graphics/traveler/tools/misc/mktrig.c @@ -132,7 +132,7 @@ int main(int argc, char **argv, char **envp) value16 = (uint16_t)((long)(valuef)); fprintf(outfile, "0x%04x", (unsigned int)value16); - + i++; j++; if ((j < 8) && (i < 2400)) diff --git a/graphics/traveler/tools/misc/pll2txt.c b/graphics/traveler/tools/misc/pll2txt.c index 77f16fa7a..38bc37640 100644 --- a/graphics/traveler/tools/misc/pll2txt.c +++ b/graphics/traveler/tools/misc/pll2txt.c @@ -106,9 +106,9 @@ int main(int argc, char **argv, char **envp) FILE *instream; FILE *outstream = stdout; - while ((option = getopt(argc, argv, "ho:")) != EOF) - { - switch (option) + while ((option = getopt(argc, argv, "ho:")) != EOF) + { + switch (option) { case 'h' : b_use_hex = true; diff --git a/graphics/traveler/tools/misc/txt2pll.c b/graphics/traveler/tools/misc/txt2pll.c index 6747f205d..e714f4d7d 100644 --- a/graphics/traveler/tools/misc/txt2pll.c +++ b/graphics/traveler/tools/misc/txt2pll.c @@ -257,11 +257,11 @@ int main(int argc, char **argv, char** envp) /* Write header information */ - if (fwrite((char*)&header, SIZEOF_TRVPLANEFILEHEADER_T, 1, outstream) != 1) - { + if (fwrite((char*)&header, SIZEOF_TRVPLANEFILEHEADER_T, 1, outstream) != 1) + { fprintf(stderr, "Failed to write file header\n"); return EXIT_FAILURE; - } + } /* Read X Planes */ diff --git a/include/modbus/mb.h b/include/modbus/mb.h index c83caad16..c2b95f8fd 100644 --- a/include/modbus/mb.h +++ b/include/modbus/mb.h @@ -237,6 +237,7 @@ eMBErrorCode eMBDisable(void); * returns eMBErrorCode::MB_EILLSTATE. Otherwise it returns * eMBErrorCode::MB_ENOERR. */ + eMBErrorCode eMBPoll(void); /* Configure the slave id of the device. @@ -258,6 +259,7 @@ eMBErrorCode eMBPoll(void); * is too small it returns eMBErrorCode::MB_ENORES. Otherwise * it returns eMBErrorCode::MB_ENOERR. */ + eMBErrorCode eMBSetSlaveID(uint8_t ucSlaveID, bool xIsRunning, uint8_t const *pucAdditional, uint16_t usAdditionalLen); @@ -283,6 +285,7 @@ eMBErrorCode eMBSetSlaveID(uint8_t ucSlaveID, bool xIsRunning, * case the values in config.h should be adjusted. If the argument was not * valid it returns eMBErrorCode::MB_EINVAL. */ + eMBErrorCode eMBRegisterCB(uint8_t ucFunctionCode, pxMBFunctionHandler pxHandler); @@ -326,6 +329,7 @@ eMBErrorCode eMBRegisterCB(uint8_t ucFunctionCode, * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case * a SLAVE DEVICE FAILURE exception is sent as a response. */ + eMBErrorCode eMBRegInputCB(uint8_t * pucRegBuffer, uint16_t usAddress, uint16_t usNRegs); @@ -361,6 +365,7 @@ eMBErrorCode eMBRegInputCB(uint8_t * pucRegBuffer, uint16_t usAddress, * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case * a SLAVE DEVICE FAILURE exception is sent as a response. */ + eMBErrorCode eMBRegHoldingCB(uint8_t * pucRegBuffer, uint16_t usAddress, uint16_t usNRegs, eMBRegisterMode eMode); @@ -397,6 +402,7 @@ eMBErrorCode eMBRegHoldingCB(uint8_t * pucRegBuffer, uint16_t usAddress, * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case * a SLAVE DEVICE FAILURE exception is sent as a response. */ + eMBErrorCode eMBRegCoilsCB(uint8_t *pucRegBuffer, uint16_t usAddress, uint16_t usNCoils, eMBRegisterMode eMode); @@ -428,6 +434,7 @@ eMBErrorCode eMBRegCoilsCB(uint8_t *pucRegBuffer, uint16_t usAddress, * - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case * a SLAVE DEVICE FAILURE exception is sent as a response. */ + eMBErrorCode eMBRegDiscreteCB(uint8_t *pucRegBuffer, uint16_t usAddress, uint16_t usNDiscrete); diff --git a/interpreters/bas/bas_fs.c b/interpreters/bas/bas_fs.c index ee1029f4f..3f1485bd1 100644 --- a/interpreters/bas/bas_fs.c +++ b/interpreters/bas/bas_fs.c @@ -1671,7 +1671,7 @@ long int FS_lof(int chn) return -1; } - return (long int)(endpos / g_file[chn]->recLength); + return (long int)(endpos / g_file[chn]->recLength); } long int FS_recLength(int chn) diff --git a/interpreters/bas/bas_token.c b/interpreters/bas/bas_token.c index dc33ad7a8..d8ce86f94 100644 --- a/interpreters/bas/bas_token.c +++ b/interpreters/bas/bas_token.c @@ -3622,10 +3622,11 @@ YY_RULE_SETUP #line 1171 "bas_token.l" { if (cur) - { - cur->statement=stmt_QUOTE_REM; - strcpy(cur->u.rem=malloc(strlen(yytext+1)+1),yytext+1); - } + { + cur->statement=stmt_QUOTE_REM; + strcpy(cur->u.rem=malloc(strlen(yytext+1)+1),yytext+1); + } + return T_QUOTE; } YY_BREAK @@ -4240,8 +4241,8 @@ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file) * In that case, we don't want to reset the lineno or column. */ - if (b != YY_CURRENT_BUFFER) - { + if (b != YY_CURRENT_BUFFER) + { b->yy_bs_lineno = 1; b->yy_bs_column = 0; } @@ -4352,9 +4353,9 @@ static void yyensure_buffer_stack (void) (num_to_alloc * sizeof(struct yy_buffer_state*)); if (! (yy_buffer_stack)) YY_FATAL_ERROR("out of dynamic memory in yyensure_buffer_stack()"); - + memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); - + (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; diff --git a/interpreters/ficl/src/nuttx.c b/interpreters/ficl/src/nuttx.c index 16b3fa1db..1d05d90c6 100644 --- a/interpreters/ficl/src/nuttx.c +++ b/interpreters/ficl/src/nuttx.c @@ -22,44 +22,50 @@ void ficlFree(void *p) free(p); } -void ficlCallbackDefaultTextOut(ficlCallback *callback, char *message) +void ficlCallbackDefaultTextOut(ficlCallback *callback, char *message) { FICL_IGNORE(callback); if (message != NULL) + { fputs(message, stdout); + } else + { fflush(stdout); - return; + } } int ficlFileStatus(char *filename, int *status) { - struct stat statbuf; - if (stat(filename, &statbuf) == 0) + struct stat statbuf; + if (stat(filename, &statbuf) == 0) { - *status = statbuf.st_mode; - return 0; + *status = statbuf.st_mode; + return 0; } - *status = ENOENT; - return -1; + + *status = ENOENT; + return -1; } long ficlFileSize(ficlFile *ff) { - struct stat statbuf; - if (ff == NULL) - return -1; - - statbuf.st_size = -1; - if (fstat(fileno(ff->f), &statbuf) != 0) - return -1; - - return statbuf.st_size; + struct stat statbuf; + if (ff == NULL) + { + return -1; + } + + statbuf.st_size = -1; + if (fstat(fileno(ff->f), &statbuf) != 0) + { + return -1; + } + + return statbuf.st_size; } void ficlSystemCompilePlatform(ficlSystem *system) { - return; + return; } - - diff --git a/modbus/rtu/mbrtu.c b/modbus/rtu/mbrtu.c index 50e69cdbb..8fbef1904 100644 --- a/modbus/rtu/mbrtu.c +++ b/modbus/rtu/mbrtu.c @@ -230,7 +230,7 @@ eMBErrorCode eMBRTUSend(uint8_t ucSlaveAddress, const uint8_t *pucFrame, uint16_ usSndBufferCount += usLength; /* Calculate CRC16 checksum for Modbus-Serial-Line-PDU. */ - + usCRC16 = usMBCRC16((uint8_t *) pucSndBufferCur, usSndBufferCount); ucRTUBuf[usSndBufferCount++] = (uint8_t)(usCRC16 & 0xFF); ucRTUBuf[usSndBufferCount++] = (uint8_t)(usCRC16 >> 8); diff --git a/modbus/tcp/mbtcp.c b/modbus/tcp/mbtcp.c index eae06875d..456798e4d 100644 --- a/modbus/tcp/mbtcp.c +++ b/modbus/tcp/mbtcp.c @@ -89,7 +89,7 @@ eMBErrorCode eMBTCPDoInit(uint16_t ucTCPPort) { eStatus = MB_EPORTERR; } - + return eStatus; } diff --git a/netutils/ftpc/ftpc_transfer.c b/netutils/ftpc/ftpc_transfer.c index 24dbef987..b84cf509b 100644 --- a/netutils/ftpc/ftpc_transfer.c +++ b/netutils/ftpc/ftpc_transfer.c @@ -322,9 +322,9 @@ int ftpc_xfrinit(FAR struct ftpc_session_s *session) } return OK; - errout_with_data: +errout_with_data: ftpc_sockclose(&session->data); - errout: +errout: return ERROR; } diff --git a/netutils/ftpd/ftpd.c b/netutils/ftpd/ftpd.c index 01ee8a873..51cf1c315 100644 --- a/netutils/ftpd/ftpd.c +++ b/netutils/ftpd/ftpd.c @@ -1871,7 +1871,7 @@ static int ftpd_stream(FAR struct ftpd_session_s *session, int cmdtype) goto errout_with_session; } - for (;;) + for (;;) { /* Read from the source (file or TCP connection) */ @@ -4042,7 +4042,7 @@ static FAR void *ftpd_worker(FAR void *arg) /* Then loop processing FTP commands */ - for (;;) + for (;;) { /* Receive the next command */ diff --git a/netutils/pppd/ppp.c b/netutils/pppd/ppp.c index 6321a6730..15abcf022 100644 --- a/netutils/pppd/ppp.c +++ b/netutils/pppd/ppp.c @@ -418,7 +418,7 @@ void ppp_upcall(struct ppp_context_s *ctx, u16_t protocol, u8_t *buffer, u16_t l * length of the codespace * ****************************************************************************/ - + u16_t scan_packet(struct ppp_context_s *ctx, u16_t protocol, const u8_t *list, u8_t *buffer, u8_t *options, u16_t len) { diff --git a/nshlib/nsh_fscmds.c b/nshlib/nsh_fscmds.c index 8ef6a9571..ea8578bb5 100644 --- a/nshlib/nsh_fscmds.c +++ b/nshlib/nsh_fscmds.c @@ -129,14 +129,14 @@ static char g_iobuffer[IOBUFFERSIZE]; #if !defined(CONFIG_NSH_DISABLE_CP) || defined(CONFIG_NSH_FULLPATH) static void trim_dir(char *arg) { - /* Skip any trailing '/' characters (unless it is also the leading '/') */ + /* Skip any trailing '/' characters (unless it is also the leading '/') */ - int len = strlen(arg) - 1; - while (len > 0 && arg[len] == '/') - { + int len = strlen(arg) - 1; + while (len > 0 && arg[len] == '/') + { arg[len] = '\0'; len--; - } + } } #endif diff --git a/nshlib/nsh_netcmds.c b/nshlib/nsh_netcmds.c index 555eef29e..7a4be5034 100644 --- a/nshlib/nsh_netcmds.c +++ b/nshlib/nsh_netcmds.c @@ -855,11 +855,11 @@ static int nsh_gethostip(FAR char *hostname, FAR union ip_addr_u *ipaddr, } #endif - /* The inet_pton() function returns 1 if the conversion succeeds. It will - * return 0 if the input is not a valid IPv4 dotted-decimal string or a - * valid IPv6 address string, or -1 with errno set to EAFNOSUPPORT if - * the address family argument is unsupported. - */ + /* The inet_pton() function returns 1 if the conversion succeeds. It will + * return 0 if the input is not a valid IPv4 dotted-decimal string or a + * valid IPv6 address string, or -1 with errno set to EAFNOSUPPORT if + * the address family argument is unsupported. + */ return (ret > 0) ? OK : ERROR; diff --git a/nshlib/nsh_timcmds.c b/nshlib/nsh_timcmds.c index e0604d351..55fa88a78 100644 --- a/nshlib/nsh_timcmds.c +++ b/nshlib/nsh_timcmds.c @@ -328,17 +328,18 @@ int cmd_date(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv) goto errout; } - /* Display or set the time */ + /* Display or set the time */ - if (newtime) - { - ret = date_settime(vtbl, argv[0], newtime); - } - else - { - ret = date_showtime(vtbl, argv[0]); - } - return ret; + if (newtime) + { + ret = date_settime(vtbl, argv[0], newtime); + } + else + { + ret = date_showtime(vtbl, argv[0]); + } + + return ret; errout: nsh_output(vtbl, errfmt, argv[0]); diff --git a/nshlib/nsh_usbconsole.c b/nshlib/nsh_usbconsole.c index bcc2ef300..894a0ea68 100644 --- a/nshlib/nsh_usbconsole.c +++ b/nshlib/nsh_usbconsole.c @@ -63,7 +63,7 @@ * Pre-processor Definitions ****************************************************************************/ - /**************************************************************************** +/**************************************************************************** * Private Types ****************************************************************************/ diff --git a/nshlib/nsh_usbkeyboard.c b/nshlib/nsh_usbkeyboard.c index 91aeaaa9a..145256fee 100644 --- a/nshlib/nsh_usbkeyboard.c +++ b/nshlib/nsh_usbkeyboard.c @@ -55,7 +55,7 @@ * Pre-processor Definitions ****************************************************************************/ - /**************************************************************************** +/**************************************************************************** * Private Types ****************************************************************************/ diff --git a/system/cu/cu_main.c b/system/cu/cu_main.c index 5cce8e1a8..877c57d00 100644 --- a/system/cu/cu_main.c +++ b/system/cu/cu_main.c @@ -223,7 +223,7 @@ static void print_help(void) " -s: Use given speed (default %d)\n" " -r: Disable RTS/CTS flow control (default: on)\n" " -?: This help\n", - CONFIG_SYSTEM_CUTERM_DEFAULT_DEVICE, + CONFIG_SYSTEM_CUTERM_DEFAULT_DEVICE, CONFIG_SYSTEM_CUTERM_DEFAULT_BAUD); } diff --git a/system/netdb/netdb_main.c b/system/netdb/netdb_main.c index 4c0872179..d4436c1c6 100644 --- a/system/netdb/netdb_main.c +++ b/system/netdb/netdb_main.c @@ -90,7 +90,7 @@ static void show_usage(FAR const char *progname, int exitcode) exit(exitcode); } - /**************************************************************************** +/**************************************************************************** * Public Functions ****************************************************************************/ diff --git a/system/zmodem/zm_send.c b/system/zmodem/zm_send.c index 7ddd4d5db..89d1663eb 100644 --- a/system/zmodem/zm_send.c +++ b/system/zmodem/zm_send.c @@ -1716,7 +1716,7 @@ int zms_send(ZMSHANDLE handle, FAR const char *filename, * irrecoverable error is detected or until the file is sent correctly. */ - return zm_datapump(&pzms->cmn); + return zm_datapump(&pzms->cmn); } /****************************************************************************