Navigation

    Freqchip开发者论坛

    • Register
    • Login
    • Search
    • Categories
    • Recent
    1. Home
    2. Winton
    W
    • Continue chat with Winton
    • Start new chat with Winton
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Winton

    @Winton

    0
    Reputation
    27
    Posts
    2046
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Winton Follow

    Posts made by Winton

    • 现象:异常发生crash dump regs: PC=0xa506。现象较异常,有定时器挂了,也有直接crash后挂起看门狗无法重启,>也有直接crash后重启。

      现象:异常发生crash dump regs: PC=0xa506。现象较异常,有定时器挂了,也有直接crash后挂起看门狗无法重启,>也有直接crash后重启。
      原因:堆栈不够,导致中断在打断一些嵌套较深的函数时,发生crash。
      解决:加大堆栈到0x1000,代码看以下。
      void initial_static_memory(uint8_t act_num,
      uint8_t adv_act_num,
      uint8_t con_num,
      uint8_t rx_buf_num,
      uint16_t rx_buf_size,
      uint8_t tx_buf_num,
      uint16_t tx_buf_size,
      uint16_t max_adv_size,
      uint16_t stack_size);

      /*********************************************************************

      • @fn user_init_static_memory
      • @brief set memory.
      • @param None.
      • @return None.
        */

      void user_init_static_memory(void)
      {
      initial_static_memory(11, 5, 2, 8, 251, 8, 251, 37, 0x1000);
      }
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      19
      20
      21
      22
      23
      24
      25
      26

      版权声明:本文为CSDN博主「匿迭谢君」的原创文章,遵循CC 4.0 BY-SA版权协议,转载附上原文出处链接及本声明。
      原文链接:https://blog.csdn.net/thanksguy/article/details/124979498

      posted in FR801xH
      W
      Winton
    • 号外号外:“富芮坤杯”第一届创易栈电子设计大赛报名正式启动!

      为促进电子科技的高速发展,创易栈与富芮坤联合举办“富芮坤杯”第一届创易栈电子设计大赛。报名参加本次大赛,即有机会获得富芮坤价值299元的开发板,更有5000元京东卡等你来拿!
      报名链接:https://mp.weixin.qq.com/s/FIvkl2IIPvkxIZkiwgd-2A

      posted in FR801xH
      W
      Winton
    • RE: 富芮坤 文档 FREQ BLE SDK User Guide V1.0.5,中有个 “大数字”,不知道怎么理解?

      大数字控制GPIO,意思是把IO控制给CPU;相对的是PMU也可以控制IO状态,希望帮助到您~

      posted in FR801xH
      W
      Winton
    • RE: 程序下载后verify 出错

      可以用串口工具烧录bin试试

      posted in FR801xH
      W
      Winton
    • RE: 8016HA的KEIL支持文件,无法下载

      可以看下教程《Fr801xH 快速入门》

      posted in FR801xH
      W
      Winton
    • RE: LDO_OUT引脚

      您好,LDO_OUT脚输出电压可配,最大输出电流80mA,可用于外设供电。LDO_OUT脚上电就有高电平,软件不能关闭。该脚电压越低,休眠底电流越低。可以看下《FR8016HA_RD_SCH_V2.0》资料

      posted in FR801xH
      W
      Winton