Fix several cosmetic, C coding style issues
This commit is contained in:
parent
f6e7e9c1c0
commit
aacfce081e
@ -114,8 +114,8 @@ static b16_t g_ybslope;
|
|||||||
|
|
||||||
static const char *g_ajoynames[AJOY_NBUTTONS] =
|
static const char *g_ajoynames[AJOY_NBUTTONS] =
|
||||||
{
|
{
|
||||||
"SELECT", "FIRE", "JUMP", "BUTTON 4",
|
"SELECT", "FIRE", "JUMP", "BUTTON 4",
|
||||||
"BUTTON 5", "BUTTON 6", "BUTTON 7", "BUTTON 8",
|
"BUTTON 5", "BUTTON 6", "BUTTON 7", "BUTTON 8",
|
||||||
};
|
};
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -183,7 +183,7 @@ static int button7_handler(int irq, FAR void *context);
|
|||||||
* Private Data
|
* Private Data
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/* Button Names */
|
/* Button Names */
|
||||||
|
|
||||||
static const struct button_info_s g_buttoninfo[NUM_BUTTONS] =
|
static const struct button_info_s g_buttoninfo[NUM_BUTTONS] =
|
||||||
{
|
{
|
||||||
|
@ -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
|
/****************************************************************************
|
||||||
*
|
* Included Files
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* 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__)
|
#if defined(__arm__) && defined(CORE_TEENSY) && defined(__MK20DX128__)
|
||||||
#define TEENSY3 1
|
# define TEENSY3 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* I used the Teensy 3.0 to get the Arduino CC3000 library working but the
|
/* 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. */
|
your wiring is OK then try changing this. */
|
||||||
|
|
||||||
#ifdef TEENSY3
|
#ifdef TEENSY3
|
||||||
#define USE_HARDWARE_SPI false
|
#define USE_HARDWARE_SPI false
|
||||||
#else
|
#else
|
||||||
#define USE_HARDWARE_SPI true
|
#define USE_HARDWARE_SPI true
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// These are the Arduino pins that connect to the CC3000
|
// These are the Arduino pins that connect to the CC3000
|
||||||
@ -48,102 +53,114 @@
|
|||||||
|
|
||||||
#ifndef TEENSY3
|
#ifndef TEENSY3
|
||||||
|
|
||||||
#define WLAN_CS 10 // Arduino pin connected to CC3000 WLAN_SPI_CS
|
#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_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 3 // Arduino pin connected to CC3000 WLAN_SPI_IRQ
|
||||||
#define WLAN_IRQ_INTNUM 1 // The attachInterrupt() number that corresponds
|
#define WLAN_IRQ_INTNUM 1 // The attachInterrupt() number that corresponds
|
||||||
// to WLAN_IRQ
|
// to WLAN_IRQ
|
||||||
#define WLAN_MOSI MOSI
|
#define WLAN_MOSI MOSI
|
||||||
#define WLAN_MISO MISO
|
#define WLAN_MISO MISO
|
||||||
#define WLAN_SCK SCK
|
#define WLAN_SCK SCK
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#define WLAN_CS 25
|
#define WLAN_CS 25
|
||||||
#define WLAN_MISO 26
|
#define WLAN_MISO 26
|
||||||
#define WLAN_IRQ 27
|
#define WLAN_IRQ 27
|
||||||
#define WLAN_IRQ_INTNUM 27 // On the Teensy 3.0 the interrupt # is the same as the pin #
|
#define WLAN_IRQ_INTNUM 27 // On the Teensy 3.0 the interrupt # is the same as the pin #
|
||||||
#define WLAN_MOSI 28
|
#define WLAN_MOSI 28
|
||||||
#define WLAN_SCK 29
|
#define WLAN_SCK 29
|
||||||
#define WLAN_EN 30
|
#define WLAN_EN 30
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/* The timing between setting the CS pin and reading the IRQ pin is very
|
||||||
The timing between setting the CS pin and reading the IRQ pin is very
|
* tight on the CC3000, and sometimes the default Arduino digitalRead()
|
||||||
tight on the CC3000, and sometimes the default Arduino digitalRead()
|
* and digitalWrite() functions are just too slow.
|
||||||
and digitalWrite() functions are just too slow.
|
*
|
||||||
|
* For many of the CC3000 library functions this isn't a big deal because the
|
||||||
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
|
||||||
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()
|
||||||
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
|
||||||
/ 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
|
||||||
its pin code and the CC3000 will flip another pin's state and it will be
|
* missed, and everything locks up.
|
||||||
missed, and everything locks up.
|
*
|
||||||
|
* The upshot of all of this is we need to read & write the pin states
|
||||||
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.
|
||||||
directly, which is very fast compared to the built in Arduino functions.
|
*
|
||||||
|
* The Teensy 3.0's library has built in macros called digitalReadFast()
|
||||||
The Teensy 3.0's library has built in macros called digitalReadFast()
|
* & digitalWriteFast() that compile down to direct port manipulations but
|
||||||
& digitalWriteFast() that compile down to direct port manipulations but
|
* are still readable, so use those if possible.
|
||||||
are still readable, so use those if possible.
|
*
|
||||||
|
* There's a digitalReadFast() / digitalWriteFast() library for Arduino but
|
||||||
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
|
||||||
it looks like it hasn't been updated since 2010 so I think it's best to
|
* just use the direct port manipulations.
|
||||||
just use the direct port manipulations.
|
*/
|
||||||
*/
|
|
||||||
|
|
||||||
#ifdef TEENSY3
|
#ifdef TEENSY3
|
||||||
|
|
||||||
#define Read_CC3000_IRQ_Pin() digitalReadFast(WLAN_IRQ)
|
#define Read_CC3000_IRQ_Pin() digitalReadFast(WLAN_IRQ)
|
||||||
#define Set_CC3000_CS_NotActive() digitalWriteFast(WLAN_CS, HIGH)
|
#define Set_CC3000_CS_NotActive() digitalWriteFast(WLAN_CS, HIGH)
|
||||||
#define Set_CC3000_CS_Active() digitalWriteFast(WLAN_CS, LOW)
|
#define Set_CC3000_CS_Active() digitalWriteFast(WLAN_CS, LOW)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
// This is hardcoded for an ATMega328 and pin 3. You will need to change this
|
// This is hardcoded for an ATMega328 and pin 3. You will need to change this
|
||||||
// for other MCUs or pins
|
// 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
|
// This is hardcoded for an ATMega328 and pin 10. You will need to change this
|
||||||
// for other MCUs or pins
|
// for other MCUs or pins
|
||||||
#define Set_CC3000_CS_NotActive() PORTB |= B00000100
|
#define Set_CC3000_CS_NotActive() PORTB |= B00000100
|
||||||
#define Set_CC3000_CS_Active() PORTB &= B11111011
|
#define Set_CC3000_CS_Active() PORTB &= B11111011
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MAC_ADDR_LEN 6
|
#define MAC_ADDR_LEN 6
|
||||||
#define DISABLE (0)
|
#define DISABLE (0)
|
||||||
#define ENABLE (1)
|
#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
|
/* 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
|
//#define CC3000_TINY_DRIVER 1
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
extern uint8_t asyncNotificationWaiting;
|
extern uint8_t asyncNotificationWaiting;
|
||||||
extern long lastAsyncEvent;
|
extern long lastAsyncEvent;
|
||||||
@ -155,4 +172,8 @@ extern volatile unsigned long OkToDoShutDown;
|
|||||||
extern volatile unsigned long ulCC3000DHCP_configured;
|
extern volatile unsigned long ulCC3000DHCP_configured;
|
||||||
extern volatile uint8_t ucStopSmartConfig;
|
extern volatile uint8_t ucStopSmartConfig;
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Function Prototypes
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
void CC3000_Init(void);
|
void CC3000_Init(void);
|
||||||
|
@ -95,7 +95,7 @@ static djoy_buttonset_t g_djoylast;
|
|||||||
|
|
||||||
static const char *g_djoynames[DJOY_NDISCRETES] =
|
static const char *g_djoynames[DJOY_NDISCRETES] =
|
||||||
{
|
{
|
||||||
"UP", "DOWN", "LEFT", "RIGHT", "SELECT", "FIRE", "JUMP", "RUN"
|
"UP", "DOWN", "LEFT", "RIGHT", "SELECT", "FIRE", "JUMP", "RUN"
|
||||||
};
|
};
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -68,7 +68,7 @@ int main(int argc, char **argv)
|
|||||||
if (test_stream)
|
if (test_stream)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Hmm... Delete \"%s\" and try this again\n",
|
fprintf(stderr, "Hmm... Delete \"%s\" and try this again\n",
|
||||||
g_nonexistent);
|
g_nonexistent);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ int main(int argc, char **argv)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
fprintf(stderr, "We failed to open \"%s!\" errno is %d\n",
|
fprintf(stderr, "We failed to open \"%s!\" errno is %d\n",
|
||||||
g_nonexistent, errno);
|
g_nonexistent, errno);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ static char no_name[] = "<noname>";
|
|||||||
* a relocation type that is not supported by ELF is generated by GCC.
|
* 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: execv was successful!\n");
|
||||||
printf("Child: argc=%d\n", argc);
|
printf("Child: argc=%d\n", argc);
|
||||||
|
@ -243,7 +243,7 @@ int cmd_rhelp(SESSION handle, int argc, char **argv)
|
|||||||
free(msg);
|
free(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -112,7 +112,7 @@ static const uint32_t g_rgb16[LTDC_EXAMPLE_NCOLORS] =
|
|||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
void ltdc_clrcolor(uint8_t *color, uint8_t value, size_t size);
|
void ltdc_clrcolor(uint8_t *color, uint8_t value, size_t size);
|
||||||
int ltdc_cmpcolor(uint8_t *color1, uint8_t *color2, size_t size);
|
int ltdc_cmpcolor(uint8_t *color1, uint8_t *color2, size_t size);
|
||||||
|
@ -213,7 +213,7 @@ int nettest_main(int argc, char *argv[])
|
|||||||
#ifdef CONFIG_EXAMPLES_NETTEST_INIT
|
#ifdef CONFIG_EXAMPLES_NETTEST_INIT
|
||||||
/* Initialize the network */
|
/* Initialize the network */
|
||||||
|
|
||||||
netest_initialize();
|
netest_initialize();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_EXAMPLES_NETTEST_LOOPBACK)
|
#if defined(CONFIG_EXAMPLES_NETTEST_LOOPBACK)
|
||||||
|
@ -68,7 +68,7 @@ int main(int argc, char **argv)
|
|||||||
if (test_stream)
|
if (test_stream)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Hmm... Delete \"%s\" and try this again\n",
|
fprintf(stderr, "Hmm... Delete \"%s\" and try this again\n",
|
||||||
g_nonexistent);
|
g_nonexistent);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ int main(int argc, char **argv)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
fprintf(stderr, "We failed to open \"%s!\" errno is %d\n",
|
fprintf(stderr, "We failed to open \"%s!\" errno is %d\n",
|
||||||
g_nonexistent, errno);
|
g_nonexistent, errno);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -63,13 +63,13 @@ int main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
printf("argv[%d]\t= ", i);
|
printf("argv[%d]\t= ", i);
|
||||||
if (argv[i])
|
if (argv[i])
|
||||||
{
|
{
|
||||||
printf("(0x%p) \"%s\"\n", argv[i], argv[i]);
|
printf("(0x%p) \"%s\"\n", argv[i], argv[i]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf("NULL?\n");
|
printf("NULL?\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("argv[%d]\t= 0x%p\n", argc, argv[argc]);
|
printf("argv[%d]\t= 0x%p\n", argc, argv[argc]);
|
||||||
|
@ -67,7 +67,7 @@ static char no_name[] = "<noname>";
|
|||||||
* a relocation type that is not supported by NXFLAT is generated by GCC.
|
* 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: execv was successful!\n");
|
||||||
printf("Child: argc=%d\n", argc);
|
printf("Child: argc=%d\n", argc);
|
||||||
|
@ -327,7 +327,7 @@ static void nxhello_initglyph(FAR uint8_t *glyph, uint8_t height,
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -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 */
|
{ 75, 0}, { 1, 5}, { 2, 4}, { 1, 3}, { 1, 163}, { 1, 6}, { 1, 4}, { 1, 5}, /* Row 158 */
|
||||||
{ 77, 0},
|
{ 77, 0},
|
||||||
{ 76, 0}, { 1, 5}, { 4, 4}, { 1, 5}, { 78, 0} /* Row 159 */
|
{ 76, 0}, { 1, 5}, { 4, 4}, { 1, 5}, { 78, 0} /* Row 159 */
|
||||||
};
|
};
|
||||||
|
|
||||||
#elif CONFIG_EXAMPLES_NXIMAGE_BPP == 16
|
#elif CONFIG_EXAMPLES_NXIMAGE_BPP == 16
|
||||||
|
|
||||||
|
@ -197,7 +197,7 @@ static void nxlines_kbdin(NXWINDOW hwnd, uint8_t nch, FAR const uint8_t *ch,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
unsigned char hello_pex[] = {
|
unsigned char hello_pex[] =
|
||||||
|
{
|
||||||
0x50, 0x4f, 0x46, 0x46, 0x01, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x05,
|
0x50, 0x4f, 0x46, 0x46, 0x01, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x05,
|
||||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18,
|
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18,
|
||||||
0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
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,
|
0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x6e, 0x6f, 0x00, 0x2e, 0x73, 0x74, 0x72,
|
||||||
0x74, 0x61, 0x62, 0x00
|
0x74, 0x61, 0x62, 0x00
|
||||||
};
|
};
|
||||||
|
|
||||||
unsigned int hello_pex_len = 232;
|
unsigned int hello_pex_len = 232;
|
||||||
|
@ -388,9 +388,9 @@ int pwm_main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
close(fd);
|
close(fd);
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
return OK;
|
return OK;
|
||||||
|
|
||||||
errout_with_dev:
|
errout_with_dev:
|
||||||
close(fd);
|
close(fd);
|
||||||
|
@ -61,7 +61,7 @@
|
|||||||
# define CONFIG_EXAMPLES_RELAYS_NRELAYS 2
|
# define CONFIG_EXAMPLES_RELAYS_NRELAYS 2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Types
|
* Private Types
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
unsigned char testdir_img[] = {
|
unsigned char testdir_img[] =
|
||||||
|
{
|
||||||
0x2d, 0x72, 0x6f, 0x6d, 0x31, 0x66, 0x73, 0x2d, 0x00, 0x00, 0x02, 0x60,
|
0x2d, 0x72, 0x6f, 0x6d, 0x31, 0x66, 0x73, 0x2d, 0x00, 0x00, 0x02, 0x60,
|
||||||
0x27, 0x43, 0x4a, 0x8a, 0x52, 0x4f, 0x4d, 0x46, 0x53, 0x5f, 0x54, 0x65,
|
0x27, 0x43, 0x4a, 0x8a, 0x52, 0x4f, 0x4d, 0x46, 0x53, 0x5f, 0x54, 0x65,
|
||||||
0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49,
|
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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
0x00, 0x00, 0x00, 0x00
|
0x00, 0x00, 0x00, 0x00
|
||||||
};
|
};
|
||||||
|
|
||||||
unsigned int testdir_img_len = 1024;
|
unsigned int testdir_img_len = 1024;
|
||||||
|
@ -354,9 +354,9 @@ int wdog_main(int argc, char *argv[])
|
|||||||
goto errout_with_dev;
|
goto errout_with_dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
close(fd);
|
close(fd);
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
return OK;
|
return OK;
|
||||||
|
|
||||||
errout_with_dev:
|
errout_with_dev:
|
||||||
close(fd);
|
close(fd);
|
||||||
|
@ -321,10 +321,10 @@ static inline int tiff_putheader(FAR struct tiff_info_s *info)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Two pad bytes following the header */
|
/* Two pad bytes following the header */
|
||||||
|
|
||||||
ret = tiff_putint16(info->outfd, 0);
|
ret = tiff_putint16(info->outfd, 0);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
@ -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
|
* 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
|
* 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
|
* 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
|
* 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
|
* 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
|
#undef EXTERN
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
@ -209,4 +209,3 @@ EXTERN ssize_t tiff_wordalign(int fd, size_t size);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __APPS_GRAPHICS_TIFF_TIFF_INTERNAL_H */
|
#endif /* __APPS_GRAPHICS_TIFF_TIFF_INTERNAL_H */
|
||||||
|
|
||||||
|
@ -283,7 +283,7 @@ int traveler_main(int argc, char *argv[])
|
|||||||
switch (*ptr)
|
switch (*ptr)
|
||||||
{
|
{
|
||||||
case 'p' :
|
case 'p' :
|
||||||
wldpath = ptr++;
|
wldpath = ptr++;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -449,7 +449,7 @@ int trv_world_create(FAR const char *wldpath, FAR const char *wldfile)
|
|||||||
if (!inihandle)
|
if (!inihandle)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "ERROR: Could not open INI file=\"%s/%s\"\n",
|
fprintf(stderr, "ERROR: Could not open INI file=\"%s/%s\"\n",
|
||||||
wldpath, wldfile);
|
wldpath, wldfile);
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -106,9 +106,9 @@ int main(int argc, char **argv, char **envp)
|
|||||||
FILE *instream;
|
FILE *instream;
|
||||||
FILE *outstream = stdout;
|
FILE *outstream = stdout;
|
||||||
|
|
||||||
while ((option = getopt(argc, argv, "ho:")) != EOF)
|
while ((option = getopt(argc, argv, "ho:")) != EOF)
|
||||||
{
|
{
|
||||||
switch (option)
|
switch (option)
|
||||||
{
|
{
|
||||||
case 'h' :
|
case 'h' :
|
||||||
b_use_hex = true;
|
b_use_hex = true;
|
||||||
|
@ -257,11 +257,11 @@ int main(int argc, char **argv, char** envp)
|
|||||||
|
|
||||||
/* Write header information */
|
/* 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");
|
fprintf(stderr, "Failed to write file header\n");
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read X Planes */
|
/* Read X Planes */
|
||||||
|
|
||||||
|
@ -237,6 +237,7 @@ eMBErrorCode eMBDisable(void);
|
|||||||
* returns eMBErrorCode::MB_EILLSTATE. Otherwise it returns
|
* returns eMBErrorCode::MB_EILLSTATE. Otherwise it returns
|
||||||
* eMBErrorCode::MB_ENOERR.
|
* eMBErrorCode::MB_ENOERR.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eMBErrorCode eMBPoll(void);
|
eMBErrorCode eMBPoll(void);
|
||||||
|
|
||||||
/* Configure the slave id of the device.
|
/* Configure the slave id of the device.
|
||||||
@ -258,6 +259,7 @@ eMBErrorCode eMBPoll(void);
|
|||||||
* is too small it returns eMBErrorCode::MB_ENORES. Otherwise
|
* is too small it returns eMBErrorCode::MB_ENORES. Otherwise
|
||||||
* it returns eMBErrorCode::MB_ENOERR.
|
* it returns eMBErrorCode::MB_ENOERR.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eMBErrorCode eMBSetSlaveID(uint8_t ucSlaveID, bool xIsRunning,
|
eMBErrorCode eMBSetSlaveID(uint8_t ucSlaveID, bool xIsRunning,
|
||||||
uint8_t const *pucAdditional,
|
uint8_t const *pucAdditional,
|
||||||
uint16_t usAdditionalLen);
|
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
|
* case the values in config.h should be adjusted. If the argument was not
|
||||||
* valid it returns eMBErrorCode::MB_EINVAL.
|
* valid it returns eMBErrorCode::MB_EINVAL.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eMBErrorCode eMBRegisterCB(uint8_t ucFunctionCode,
|
eMBErrorCode eMBRegisterCB(uint8_t ucFunctionCode,
|
||||||
pxMBFunctionHandler pxHandler);
|
pxMBFunctionHandler pxHandler);
|
||||||
|
|
||||||
@ -326,6 +329,7 @@ eMBErrorCode eMBRegisterCB(uint8_t ucFunctionCode,
|
|||||||
* - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case
|
* - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case
|
||||||
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eMBErrorCode eMBRegInputCB(uint8_t * pucRegBuffer, uint16_t usAddress,
|
eMBErrorCode eMBRegInputCB(uint8_t * pucRegBuffer, uint16_t usAddress,
|
||||||
uint16_t usNRegs);
|
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
|
* - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case
|
||||||
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eMBErrorCode eMBRegHoldingCB(uint8_t * pucRegBuffer, uint16_t usAddress,
|
eMBErrorCode eMBRegHoldingCB(uint8_t * pucRegBuffer, uint16_t usAddress,
|
||||||
uint16_t usNRegs, eMBRegisterMode eMode);
|
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
|
* - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case
|
||||||
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eMBErrorCode eMBRegCoilsCB(uint8_t *pucRegBuffer, uint16_t usAddress,
|
eMBErrorCode eMBRegCoilsCB(uint8_t *pucRegBuffer, uint16_t usAddress,
|
||||||
uint16_t usNCoils, eMBRegisterMode eMode);
|
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
|
* - eMBErrorCode::MB_EIO If an unrecoverable error occurred. In this case
|
||||||
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
* a SLAVE DEVICE FAILURE exception is sent as a response.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
eMBErrorCode eMBRegDiscreteCB(uint8_t *pucRegBuffer, uint16_t usAddress,
|
eMBErrorCode eMBRegDiscreteCB(uint8_t *pucRegBuffer, uint16_t usAddress,
|
||||||
uint16_t usNDiscrete);
|
uint16_t usNDiscrete);
|
||||||
|
|
||||||
|
@ -1671,7 +1671,7 @@ long int FS_lof(int chn)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (long int)(endpos / g_file[chn]->recLength);
|
return (long int)(endpos / g_file[chn]->recLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
long int FS_recLength(int chn)
|
long int FS_recLength(int chn)
|
||||||
|
@ -3622,10 +3622,11 @@ YY_RULE_SETUP
|
|||||||
#line 1171 "bas_token.l"
|
#line 1171 "bas_token.l"
|
||||||
{
|
{
|
||||||
if (cur)
|
if (cur)
|
||||||
{
|
{
|
||||||
cur->statement=stmt_QUOTE_REM;
|
cur->statement=stmt_QUOTE_REM;
|
||||||
strcpy(cur->u.rem=malloc(strlen(yytext+1)+1),yytext+1);
|
strcpy(cur->u.rem=malloc(strlen(yytext+1)+1),yytext+1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return T_QUOTE;
|
return T_QUOTE;
|
||||||
}
|
}
|
||||||
YY_BREAK
|
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.
|
* 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_lineno = 1;
|
||||||
b->yy_bs_column = 0;
|
b->yy_bs_column = 0;
|
||||||
}
|
}
|
||||||
|
@ -22,44 +22,50 @@ void ficlFree(void *p)
|
|||||||
free(p);
|
free(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ficlCallbackDefaultTextOut(ficlCallback *callback, char *message)
|
void ficlCallbackDefaultTextOut(ficlCallback *callback, char *message)
|
||||||
{
|
{
|
||||||
FICL_IGNORE(callback);
|
FICL_IGNORE(callback);
|
||||||
if (message != NULL)
|
if (message != NULL)
|
||||||
|
{
|
||||||
fputs(message, stdout);
|
fputs(message, stdout);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
return;
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int ficlFileStatus(char *filename, int *status)
|
int ficlFileStatus(char *filename, int *status)
|
||||||
{
|
{
|
||||||
struct stat statbuf;
|
struct stat statbuf;
|
||||||
if (stat(filename, &statbuf) == 0)
|
if (stat(filename, &statbuf) == 0)
|
||||||
{
|
{
|
||||||
*status = statbuf.st_mode;
|
*status = statbuf.st_mode;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
*status = ENOENT;
|
|
||||||
return -1;
|
*status = ENOENT;
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
long ficlFileSize(ficlFile *ff)
|
long ficlFileSize(ficlFile *ff)
|
||||||
{
|
{
|
||||||
struct stat statbuf;
|
struct stat statbuf;
|
||||||
if (ff == NULL)
|
if (ff == NULL)
|
||||||
return -1;
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
statbuf.st_size = -1;
|
statbuf.st_size = -1;
|
||||||
if (fstat(fileno(ff->f), &statbuf) != 0)
|
if (fstat(fileno(ff->f), &statbuf) != 0)
|
||||||
return -1;
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return statbuf.st_size;
|
return statbuf.st_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ficlSystemCompilePlatform(ficlSystem *system)
|
void ficlSystemCompilePlatform(ficlSystem *system)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -322,9 +322,9 @@ int ftpc_xfrinit(FAR struct ftpc_session_s *session)
|
|||||||
}
|
}
|
||||||
return OK;
|
return OK;
|
||||||
|
|
||||||
errout_with_data:
|
errout_with_data:
|
||||||
ftpc_sockclose(&session->data);
|
ftpc_sockclose(&session->data);
|
||||||
errout:
|
errout:
|
||||||
return ERROR;
|
return ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1871,7 +1871,7 @@ static int ftpd_stream(FAR struct ftpd_session_s *session, int cmdtype)
|
|||||||
goto errout_with_session;
|
goto errout_with_session;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
/* Read from the source (file or TCP connection) */
|
/* 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 */
|
/* Then loop processing FTP commands */
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
/* Receive the next command */
|
/* Receive the next command */
|
||||||
|
|
||||||
|
@ -129,14 +129,14 @@ static char g_iobuffer[IOBUFFERSIZE];
|
|||||||
#if !defined(CONFIG_NSH_DISABLE_CP) || defined(CONFIG_NSH_FULLPATH)
|
#if !defined(CONFIG_NSH_DISABLE_CP) || defined(CONFIG_NSH_FULLPATH)
|
||||||
static void trim_dir(char *arg)
|
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;
|
int len = strlen(arg) - 1;
|
||||||
while (len > 0 && arg[len] == '/')
|
while (len > 0 && arg[len] == '/')
|
||||||
{
|
{
|
||||||
arg[len] = '\0';
|
arg[len] = '\0';
|
||||||
len--;
|
len--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -855,11 +855,11 @@ static int nsh_gethostip(FAR char *hostname, FAR union ip_addr_u *ipaddr,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* The inet_pton() function returns 1 if the conversion succeeds. It will
|
/* 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
|
* 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
|
* valid IPv6 address string, or -1 with errno set to EAFNOSUPPORT if
|
||||||
* the address family argument is unsupported.
|
* the address family argument is unsupported.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return (ret > 0) ? OK : ERROR;
|
return (ret > 0) ? OK : ERROR;
|
||||||
|
|
||||||
|
@ -328,17 +328,18 @@ int cmd_date(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
goto errout;
|
goto errout;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Display or set the time */
|
/* Display or set the time */
|
||||||
|
|
||||||
if (newtime)
|
if (newtime)
|
||||||
{
|
{
|
||||||
ret = date_settime(vtbl, argv[0], newtime);
|
ret = date_settime(vtbl, argv[0], newtime);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ret = date_showtime(vtbl, argv[0]);
|
ret = date_showtime(vtbl, argv[0]);
|
||||||
}
|
}
|
||||||
return ret;
|
|
||||||
|
return ret;
|
||||||
|
|
||||||
errout:
|
errout:
|
||||||
nsh_output(vtbl, errfmt, argv[0]);
|
nsh_output(vtbl, errfmt, argv[0]);
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
* Pre-processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Types
|
* Private Types
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@
|
|||||||
* Pre-processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Private Types
|
* Private Types
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -223,7 +223,7 @@ static void print_help(void)
|
|||||||
" -s: Use given speed (default %d)\n"
|
" -s: Use given speed (default %d)\n"
|
||||||
" -r: Disable RTS/CTS flow control (default: on)\n"
|
" -r: Disable RTS/CTS flow control (default: on)\n"
|
||||||
" -?: This help\n",
|
" -?: This help\n",
|
||||||
CONFIG_SYSTEM_CUTERM_DEFAULT_DEVICE,
|
CONFIG_SYSTEM_CUTERM_DEFAULT_DEVICE,
|
||||||
CONFIG_SYSTEM_CUTERM_DEFAULT_BAUD);
|
CONFIG_SYSTEM_CUTERM_DEFAULT_BAUD);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ static void show_usage(FAR const char *progname, int exitcode)
|
|||||||
exit(exitcode);
|
exit(exitcode);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
@ -1716,7 +1716,7 @@ int zms_send(ZMSHANDLE handle, FAR const char *filename,
|
|||||||
* irrecoverable error is detected or until the file is sent correctly.
|
* irrecoverable error is detected or until the file is sent correctly.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return zm_datapump(&pzms->cmn);
|
return zm_datapump(&pzms->cmn);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
Loading…
x
Reference in New Issue
Block a user