Skip to content

Commit ec87f2c

Browse files
committed
Add WIP test header.
1 parent 041af23 commit ec87f2c

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

minimal.h

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// #include <limits.h>
2+
// // #include <stdint.h>
3+
// //
4+
// // #define MY_USHORT (unsigned short) ULONG_MAX
5+
//
6+
// typedef unsigned long TickType_t;
7+
// #define portMAX_DELAY (TickType_t) ULONG_MAX
8+
// const TickType_t __portMAX_DELAY = portMAX_DELAY;
9+
//
10+
// // #define IA 4
11+
// // #undef IA
12+
// // #define IA 5
13+
// // const int __IA = IA;
14+
//
15+
//
16+
//#define MY_DONUT1 U'\U0001f369'
17+
//#define MY_DONUT2 U'🍩'
18+
//
19+
//
20+
//char β = '\x7f';
21+
//
22+
23+
// #include <stdint.h>
24+
//
25+
// #define queueQUEUE_TYPE_COUNTING_SEMAPHORE ( int8_t ) 2
26+
//
27+
28+
//#define HELLO1 "WORLD"
29+
//#define HELLO2 (char* const)"WORLD"
30+
//
31+
//
32+
//#define C (char)-4
33+
34+
// int xTaskDelayUntil(int, int);
35+
//
36+
// #define vTaskDelayUntil( pxPreviousWakeTime, xTimeIncrement ) \
37+
// do { \
38+
// ( void ) xTaskDelayUntil( ( pxPreviousWakeTime ), ( xTimeIncrement ) ); \
39+
// } while( 0 )
40+
//
41+
//
42+
// int xQueueCreateMutex(int);
43+
//
44+
// #define queueQUEUE_TYPE_MUTEX 3
45+
//
46+
// #define xSemaphoreCreateMutex() xQueueCreateMutex( queueQUEUE_TYPE_MUTEX )
47+
48+
//#include <limits.h>
49+
50+
//typedef unsigned long TickType_t;
51+
//#define portMAX_DELAY (TickType_t) ULONG_MAX
52+
53+
// int original(void);
54+
//
55+
// #define wrapper1() original()
56+
// #define wrapper2() wrapper1()

0 commit comments

Comments
 (0)