We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 185d539 commit b570192Copy full SHA for b570192
examples/platform/cc13x4_26x4/project_include/OpenThreadConfig.h
@@ -23,7 +23,6 @@
23
24
#pragma once
25
26
-
27
#define OPENTHREAD_CONFIG_NUM_MESSAGE_BUFFERS 22
28
#define OPENTHREAD_CONFIG_DHCP6_SERVER_ENABLE 0
29
#define OPENTHREAD_CONFIG_BORDER_ROUTER_ENABLE 0
src/platform/cc13xx_26xx/TI_heap_wrapper.h
@@ -1,10 +1,10 @@
1
/* Protected allocation
2
malloc/ICall_heapMalloc --> ti_heap_wrapper --> bget protected by critical section
3
*/
4
-void *pvPortMalloc( size_t xWantedSize );
+void * pvPortMalloc(size_t xWantedSize);
5
6
/* Protected Deallocation
7
Free/ICall_heapFree --> ti_heap_wrapper --> brel protected by critical section
8
9
-void vPortFree( void *pv );
+void vPortFree(void * pv);
10
void * pvPortRealloc(void * pv, size_t size);
0 commit comments