Changeset 454


Ignore:
Timestamp:
Aug 21, 2020, 9:03:08 AM (4 years ago)
Author:
coas-nagasima
Message:

まずは、Azure IoT に接続できるようAIを停止。

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  
    7979#define SVC_PERROR(expr)        svc_perror(__FILE__, __LINE__, #expr, (expr))
    8080
    81 /*static*/ uint32_t heap_area[256*1024] __attribute((section(".heap")));
     81/*static*/ uint32_t heap_area[512*1024] __attribute((section(".heap")));
    8282
    8383intptr_t heap_param[2] = {
  • azure_iot_hub_riscv/trunk/app_iothub_client/src/main.cfg

    r453 r454  
    3939
    4040CRE_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 });
     41CRE_TSK(KPU_TASK, { TA_NULL, 0, kpu_task, KPU_PRIORITY, KPU_STACK_SIZE, NULL });
    4242
    4343ATT_ISR({TA_NULL, SPI_PORTID, INTNO_SPI, spi_isr, 1 });
  • azure_iot_hub_riscv/trunk/asp_baseplatform/monitor/monitor.h

    r453 r454  
    7373#define MONITOR_STACK_SIZE      1536    /* タスクのスタックサイズ */
    7474#else
    75 #define MONITOR_STACK_SIZE      2046    /* タスクのスタックサイズ */
     75#define MONITOR_STACK_SIZE      10240   /* タスクのスタックサイズ */
    7676#endif
    7777#define MAX_COMMAND_LENGTH      200             /* モニタの最大コマンド長 */
Note: See TracChangeset for help on using the changeset viewer.