Update Win32 MSVC demo to include a simple blinky build option. The demo as it was is now the "full/comprehensive" build option.

This commit is contained in:
Richard Barry
2013-06-28 10:46:29 +00:00
parent b8a219b30c
commit 08ca5dead5
6 changed files with 852 additions and 355 deletions

View File

@ -144,8 +144,9 @@ to exclude the API function. */
#define INCLUDE_eTaskGetState 1
#define INCLUDE_xSemaphoreGetMutexHolder 1
extern void vAssertCalled( void );
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled()
/* Standard assert semantics. */
extern void vAssertCalled( unsigned long ulLine, const char * const pcFileName );
#define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled( __LINE__, __FILE__ )
/* configUSE_PORT_OPTIMISED_TASK_SELECTION is only available in the MSVC
version of the Win32 simulator projects. It will be ignored in the GCC