Fix several cosmetic, C coding style issues

This commit is contained in:
Gregory Nutt 2015-10-03 11:03:42 -06:00
parent f6e7e9c1c0
commit aacfce081e
48 changed files with 278 additions and 239 deletions

View File

@ -1,7 +1,5 @@
/**************************************************************************** /****************************************************************************
*
* This file is part of the ArduinoCC3000 library. * This file is part of the ArduinoCC3000 library.
* Version 1.0.1b * Version 1.0.1b
* *
* Copyright (C) 2013 Chris Magagna - cmagagna@yahoo.com * Copyright (C) 2013 Chris Magagna - cmagagna@yahoo.com
@ -17,13 +15,20 @@
* *
****************************************************************************/ ****************************************************************************/
/* /****************************************************************************
Some things are different for the Teensy 3.0, so set a flag if we're using * Included Files
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
@ -68,28 +73,27 @@
#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
@ -102,6 +106,7 @@
// 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
@ -115,33 +120,45 @@
#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 * http://processors.wiki.ti.com/index.php/Tiny_Driver_Support
*
CC3000's new driver has flexible memory compile options. * CC3000's new driver has flexible memory compile options.
*
This feature comes in handy when we want to use a limited RAM size MCU. * 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 * Using The Tiny Driver Compilation option will create a tiny version of our
host driver with lower data, stack and code consumption. * host driver with lower data, stack and code consumption.
*
By enabling this feature, host driver's RAM consumption can be reduced to * By enabling this feature, host driver's RAM consumption can be reduced to
minimum of 251 bytes. * minimum of 251 bytes.
*
The Tiny host driver version will limit the host driver API to the most * The Tiny host driver version will limit the host driver API to the most
essential ones. * essential ones.
*
Code size depends on actual APIs used. * Code size depends on actual APIs used.
*
RAM size depends on the largest packet sent and received. * 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 * 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. */ * and 2K to 6K byte of code size, depending on the API usage.
*/
//#define CC3000_TINY_DRIVER 1 //#define CC3000_TINY_DRIVER 1
@ -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);

View File

@ -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;

View File

@ -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;

View File

@ -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 */

View File

@ -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);

View File

@ -3626,6 +3626,7 @@ YY_RULE_SETUP
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

View File

@ -26,10 +26,13 @@ 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)
@ -40,6 +43,7 @@ int ficlFileStatus(char *filename, int *status)
*status = statbuf.st_mode; *status = statbuf.st_mode;
return 0; return 0;
} }
*status = ENOENT; *status = ENOENT;
return -1; return -1;
} }
@ -48,11 +52,15 @@ 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;
} }
@ -61,5 +69,3 @@ void ficlSystemCompilePlatform(ficlSystem *system)
{ {
return; return;
} }

View File

@ -338,6 +338,7 @@ int cmd_date(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
{ {
ret = date_showtime(vtbl, argv[0]); ret = date_showtime(vtbl, argv[0]);
} }
return ret; return ret;
errout: errout: