Navigation

    Freqchip开发者论坛

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

    ZR

    @ZR

    Global Moderator

    2
    Reputation
    445
    Posts
    4527
    Profile views
    5
    Followers
    0
    Following
    Joined Last Online

    ZR Follow
    Global Moderator

    Posts made by ZR

    • RE: FR2102例程在哪找

      @cc https://www.freqchip.com/fr200x

      官网下载

      posted in FR201x
      Z
      ZR
    • RE: fr8008怎么实现 SysTick ?

      @黄书剑

      休眠后会自动停止

      休眠所有外设会掉电

      posted in FR800x
      Z
      ZR
    • RE: 请问下FR8003可以驱动LED点阵屏吗

      @xls 需要看你屏多大,io够用不

      posted in FR800x
      Z
      ZR
    • RE: 使用FR8008GP-U LVGLDemo 创建控件反复重启

      @yjx 排查下RAM够用不,超了会复位

      posted in FR800x
      Z
      ZR
    • RE: FR8008GP-U的MTU最大协商值为247

      @张艺瀚 /*********************************************************************

      • @fn gap_set_mtu
      • @brief Set max transfer unit length. default mtu value is 512.
      •      typical value: 23 for core 4.0; 247 for core 4.2;  
        
      • @param mtu - value to be set
      • @return None.
        */
        void gap_set_mtu(uint16_t mtu);

      设置一下,最大512

      posted in FR800x
      Z
      ZR
    • RE: 关于bond存储的问题

      @lcy

      重启之后是会的,不重启是可以的

      如果重启,可以用这个接口去实现
      正确流程:重启后用 gap_bond_manager_get_info() 验证 flash 里确有记录 → 重连时在 GAP_EVT_SLAVE_CONNECT 里 gap_security_get_bond_status() 才会返回 true

      posted in FR800x
      Z
      ZR
    • RE: FR8008G-U 蓝牙和LVGL同时运行 LVGL使用外部PSRAM运行比较卡

      @hejun
      0_1787217931959_5a69fe4f-99d3-40e2-95d9-622129e4d627-图片.png

      最高可以192m

      posted in FR800x
      Z
      ZR
    • RE: FR8003A的flash寿命

      @akajqq 支持10万次擦除

      posted in FR800x
      Z
      ZR
    • RE: 如何与需要PIN码的蓝牙从机通信

      @akajqq

      case GAP_SEC_EVT_PIN_CODE_REQ:
      {
      uint8_t conidx = p_event->param.pin_code_req.conidx;
      uint8_t tk_type = p_event->param.pin_code_req.tk_type;

      LOG_INFO(app_tag, "PIN requested, conidx=%d, type=%d\r\n",
               conidx, tk_type);
      
          gap_security_send_pairing_password(conidx, 123456);
      

      }
      break;

      posted in FR800x
      Z
      ZR
    • RE: FR8008GP-U LVGL的例程在哪?

      @yjx
      https://gitee.com/a18562560220/freqchip_faq/tree/master/03外设驱动参考资料+例程/800x-u

      posted in FR800x
      Z
      ZR