mirror of
https://github.com/espressif/openthread.git
synced 2026-08-10 04:37:47 +00:00
- Allocate 1k bytes to CC2538 stack (#502)
- Free 2k bytes RAM for other's use via reducing the default size of message buffer
This commit is contained in:
@@ -59,7 +59,7 @@ extern void RFCoreRxTxIntHandler(void);
|
||||
extern void RFCoreErrIntHandler(void);
|
||||
extern void main(void);
|
||||
|
||||
static uint64_t stack[256] __attribute__((section(".stack")));
|
||||
static uint64_t stack[384] __attribute__((section(".stack")));
|
||||
|
||||
__attribute__((section(".vectors"), used))
|
||||
void (*const vectors[])(void) =
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
*
|
||||
*/
|
||||
#ifndef OPENTHREAD_CONFIG_NUM_MESSAGE_BUFFERS
|
||||
#define OPENTHREAD_CONFIG_NUM_MESSAGE_BUFFERS 64
|
||||
#define OPENTHREAD_CONFIG_NUM_MESSAGE_BUFFERS 48
|
||||
#endif // OPENTHREAD_CONFIG_NUM_MESSAGE_BUFFERS
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user