Updates to ZNeo configurations + misc cosmetic changes to comments
This commit is contained in:
parent
977bb10d24
commit
daf6d347fc
|
@ -508,6 +508,7 @@ static int z16f_rxinterrupt(int irq, void *context)
|
|||
|
||||
uart_recvchars(dev);
|
||||
}
|
||||
|
||||
return OK;
|
||||
}
|
||||
|
||||
|
@ -563,7 +564,8 @@ static int z16f_txinterrupt(int irq, void *context)
|
|||
* Name: z16f_ioctl
|
||||
*
|
||||
* Description:
|
||||
* All ioctl calls will be routed through this method
|
||||
* All ioctl that are not handled by the upper half serial driver will be
|
||||
* routed through this method
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
|
|
|
@ -135,7 +135,7 @@ CONFIG_ENDIAN_BIG=y
|
|||
#
|
||||
# Board Settings
|
||||
#
|
||||
CONFIG_BOARD_LOOPSPERMSEC=1250
|
||||
CONFIG_BOARD_LOOPSPERMSEC=2203
|
||||
# CONFIG_ARCH_CALIBRATION is not set
|
||||
|
||||
#
|
||||
|
@ -201,7 +201,7 @@ CONFIG_START_YEAR=2014
|
|||
CONFIG_START_MONTH=1
|
||||
CONFIG_START_DAY=1
|
||||
CONFIG_MAX_WDOGPARMS=2
|
||||
CONFIG_PREALLOC_WDOGS=4
|
||||
CONFIG_PREALLOC_WDOGS=16
|
||||
CONFIG_PREALLOC_TIMERS=4
|
||||
|
||||
#
|
||||
|
|
|
@ -217,7 +217,7 @@ CONFIG_NAME_MAX=32
|
|||
CONFIG_PREALLOC_MQ_MSGS=4
|
||||
CONFIG_MQ_MAXMSGSIZE=32
|
||||
CONFIG_MAX_WDOGPARMS=2
|
||||
CONFIG_PREALLOC_WDOGS=4
|
||||
CONFIG_PREALLOC_WDOGS=16
|
||||
CONFIG_PREALLOC_TIMERS=4
|
||||
|
||||
#
|
||||
|
|
|
@ -90,7 +90,8 @@ typedef FAR struct wdog_s *WDOG_ID;
|
|||
|
||||
#ifdef __cplusplus
|
||||
#define EXTERN extern "C"
|
||||
extern "C" {
|
||||
extern "C"
|
||||
{
|
||||
#else
|
||||
#define EXTERN extern
|
||||
#endif
|
||||
|
|
|
@ -270,7 +270,7 @@ int sigtimedwait(FAR const sigset_t *set, FAR struct siginfo *info,
|
|||
*/
|
||||
|
||||
wdparm_t wdparm;
|
||||
wdparm.pvarg = (FAR void*)rtcb;
|
||||
wdparm.pvarg = (FAR void *)rtcb;
|
||||
|
||||
/* Start the watchdog */
|
||||
|
||||
|
|
Loading…
Reference in New Issue