Changeset 454
- Timestamp:
- Aug 21, 2020, 9:03:08 AM (3 years ago)
- Location:
- azure_iot_hub_riscv/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
azure_iot_hub_riscv/trunk/app_iothub_client/src/main.c
r453 r454 79 79 #define SVC_PERROR(expr) svc_perror(__FILE__, __LINE__, #expr, (expr)) 80 80 81 /*static*/ uint32_t heap_area[ 256*1024] __attribute((section(".heap")));81 /*static*/ uint32_t heap_area[512*1024] __attribute((section(".heap"))); 82 82 83 83 intptr_t heap_param[2] = { -
azure_iot_hub_riscv/trunk/app_iothub_client/src/main.cfg
r453 r454 39 39 40 40 CRE_TSK(MAIN_TASK, { TA_ACT, 0, main_task, MAIN_PRIORITY, STACK_SIZE, NULL }); 41 CRE_TSK(KPU_TASK, { TA_ ACT, 0, kpu_task, KPU_PRIORITY, KPU_STACK_SIZE, NULL });41 CRE_TSK(KPU_TASK, { TA_NULL, 0, kpu_task, KPU_PRIORITY, KPU_STACK_SIZE, NULL }); 42 42 43 43 ATT_ISR({TA_NULL, SPI_PORTID, INTNO_SPI, spi_isr, 1 }); -
azure_iot_hub_riscv/trunk/asp_baseplatform/monitor/monitor.h
r453 r454 73 73 #define MONITOR_STACK_SIZE 1536 /* タスクのスタックサイズ */ 74 74 #else 75 #define MONITOR_STACK_SIZE 2046/* タスクのスタックサイズ */75 #define MONITOR_STACK_SIZE 10240 /* タスクのスタックサイズ */ 76 76 #endif 77 77 #define MAX_COMMAND_LENGTH 200 /* モニタの最大コマンド長 */
Note:
See TracChangeset
for help on using the changeset viewer.