-
Notifications
You must be signed in to change notification settings - Fork 717
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
041af23
commit ec87f2c
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// #include <limits.h> | ||
// // #include <stdint.h> | ||
// // | ||
// // #define MY_USHORT (unsigned short) ULONG_MAX | ||
// | ||
// typedef unsigned long TickType_t; | ||
// #define portMAX_DELAY (TickType_t) ULONG_MAX | ||
// const TickType_t __portMAX_DELAY = portMAX_DELAY; | ||
// | ||
// // #define IA 4 | ||
// // #undef IA | ||
// // #define IA 5 | ||
// // const int __IA = IA; | ||
// | ||
// | ||
//#define MY_DONUT1 U'\U0001f369' | ||
//#define MY_DONUT2 U'🍩' | ||
// | ||
// | ||
//char β = '\x7f'; | ||
// | ||
|
||
// #include <stdint.h> | ||
// | ||
// #define queueQUEUE_TYPE_COUNTING_SEMAPHORE ( int8_t ) 2 | ||
// | ||
|
||
//#define HELLO1 "WORLD" | ||
//#define HELLO2 (char* const)"WORLD" | ||
// | ||
// | ||
//#define C (char)-4 | ||
|
||
// int xTaskDelayUntil(int, int); | ||
// | ||
// #define vTaskDelayUntil( pxPreviousWakeTime, xTimeIncrement ) \ | ||
// do { \ | ||
// ( void ) xTaskDelayUntil( ( pxPreviousWakeTime ), ( xTimeIncrement ) ); \ | ||
// } while( 0 ) | ||
// | ||
// | ||
// int xQueueCreateMutex(int); | ||
// | ||
// #define queueQUEUE_TYPE_MUTEX 3 | ||
// | ||
// #define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX ) | ||
|
||
//#include <limits.h> | ||
|
||
//typedef unsigned long TickType_t; | ||
//#define portMAX_DELAY (TickType_t) ULONG_MAX | ||
|
||
// int original(void); | ||
// | ||
// #define wrapper1() original() | ||
// #define wrapper2() wrapper1() |