File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ extern void vLoggingPrint( const char * pcMessage );
219219#define configPROFILING ( 0 )
220220
221221/* Pseudo random number generator used by some tasks. */
222- extern uint32_t ulRand (void );
222+ extern uint32_t ulRand ( void );
223223#define configRAND32 () ulRand()
224224
225225/* The platform that FreeRTOS is running on. */
Original file line number Diff line number Diff line change 4242#include <string.h>
4343#include <stdarg.h>
4444
45- #define mainHOST_NAME "Build Combination"
46- #define mainDEVICE_NICK_NAME "Build_Combination"
45+ #define mainHOST_NAME "Build Combination"
46+ #define mainDEVICE_NICK_NAME "Build_Combination"
4747
4848#if defined( _MSC_VER ) && ( _MSC_VER <= 1600 )
49- #define local_stricmp _stricmp
49+ #define local_stricmp _stricmp
5050#else
51- #define local_stricmp strcasecmp
51+ #define local_stricmp strcasecmp
5252#endif
5353/*-----------------------------------------------------------*/
5454
Original file line number Diff line number Diff line change 3838
3939/* It is not sensible for this macro to have a default value as it is hardware
4040 * dependent. */
41- #define ipconfigBYTE_ORDER pdFREERTOS_LITTLE_ENDIAN
41+ #define ipconfigBYTE_ORDER pdFREERTOS_LITTLE_ENDIAN
4242
4343/* The windows simulator cannot really simulate MAC interrupts, and needs to
4444 * block occasionally to allow other tasks to run. */
4545#define configWINDOWS_MAC_INTERRUPT_SIMULATOR_DELAY ( 20 / portTICK_PERIOD_MS )
4646
47- #endif
47+ #endif /* ifndef FREERTOS_IP_CONFIG_H */
You can’t perform that action at this time.
0 commit comments