IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> 汇顶Goodix GR5515的FREERTOS移植及低功耗测试 -> 正文阅读

[游戏开发]汇顶Goodix GR5515的FREERTOS移植及低功耗测试

其实说移植,更确切说是完善DEMO Code,因为官方已经有一个ble_app_template_freertos的demo code了,为了方便测试功耗已经功能的运行.

1.打开工程

工程的目录结构还算简洁

2.为了简化测试,先将程序瘦身,其中?print_test_task只留了一个延时,vStartTasks只创建print_task任务

static void print_test_task(void *p_arg)
{
    while (1)
    {
  //      app_rtc_get_time(&g_calendar_time);
  //      APP_LOG_INFO("TickCount: %d, Time: %02d/%02d %02d:%02d:%02d.%03d\r\n",
  //                    xTaskGetTickCount(),
   //                   g_calendar_time.mon, g_calendar_time.date,
  //                    g_calendar_time.hour, g_calendar_time.min, g_calendar_time.sec, g_calendar_time.ms);
   //     app_log_flush();
        vTaskDelay(2000);
    }
}

/**
 *****************************************************************************************
 * @brief To create two task, the one is ble-schedule, another is watcher task
 *****************************************************************************************
 */
static void vStartTasks(void *arg)
{
 //   system_pmu_calibration_start();
 //   app_calendar_init();
    xTaskCreate(print_test_task, "print_task", APP_TASK_STACK_SIZE, NULL, configMAX_PRIORITIES - 1, NULL);
//    xTaskCreate(dfu_schedule_task, "dfu_schedule_task", DFU_TASK_STACK_SIZE, NULL, configMAX_PRIORITIES - 2, NULL);
#if APP_LOG_STORE_ENABLE
    xTaskCreate(log_store_dump_task,     "log_store_dump_task",       LOG_STORE_DUMP_TASK_STACK_SIZE,  NULL, configMAX_PRIORITIES - 3, NULL);
#endif
    vTaskDelete(NULL);
}

需要注意修改以下宏定义

// <o> Eanble APP log module
// <0=> DISABLE
// <1=> ENABLE
#ifndef APP_LOG_ENABLE
#define APP_LOG_ENABLE          0//1
#endif

// <o> Enable BLE DFU support
// <0=> DISABLE
// <1=> ENABLE
#ifndef DFU_ENABLE
#define DFU_ENABLE              0//1
#endif

3.调整代码

1)调整app_periph_init函数

/*
 * GLOBAL FUNCTION DEFINITIONS
 *****************************************************************************************
 */
void app_periph_init(void)
{
    SYS_SET_BD_ADDR(s_bd_addr);
 //   bsp_log_init();
#if APP_LOG_STORE_ENABLE
    log_store_init();
#endif
 //   dfu_port_init(NULL, NULL);
    pwr_mgmt_mode_set(PMR_MGMT_SLEEP_MODE);
}

2)添加gus透传profile,此处为了与原有的gus区分开,将文件名也更新为gus_test

?

3)在下列参数中修改广播周期为2000mS

#define DEVICE_NAME                        "RTOS_test"  /**< Device Name which will be set in GAP. */
#define APP_ADV_FAST_MIN_INTERVAL          32               /**< The fast advertising min interval (in units of 0.625 ms. This value corresponds to 160 ms). */
#define APP_ADV_FAST_MAX_INTERVAL          48               /**< The fast advertising max interval (in units of 0.625 ms. This value corresponds to 1000 ms). */
#define APP_ADV_SLOW_MIN_INTERVAL          1600 * 2              /**< The slow advertising min interval (in units of 0.625 ms). */
#define APP_ADV_SLOW_MAX_INTERVAL          1600 * 2              /**< The slow advertising max interval (in units of 0.625 ms). */
#define APP_ADV_TIMEOUT_IN_SECONDS         0                /**< The advertising timeout in units of seconds. */
#define MIN_CONN_INTERVAL                  320              /**< Minimum acceptable connection interval (0.4 seconds). */
#define MAX_CONN_INTERVAL                  520              /**< Maximum acceptable connection interval (0.65 second). */
#define SLAVE_LATENCY                      0                /**< Slave latency. */
#define CONN_SUP_TIMEOUT                   400              /**< Connection supervisory timeout (4 seconds). */

4)注意修改services_init函数

static void services_init(void)
{
	sdk_err_t   error_code;
	gus_init_t  gus_init;
	
#if DFU_ENABLE
    dfu_service_init(NULL);
#endif
	
	gus_init.evt_handler = gus_service_process_event;
	error_code = gus_service_init(&gus_init);
    APP_ERROR_CHECK(error_code);
	
#if APP_LOG_STORE_ENABLE
    app_log_dump_service_init();
#endif
}

4.烧写到评估版,使用电流分析仪连接测试

可以看到2秒的定时任务,还要2秒的广播周期,平均电流约9.5uA

?

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2022-04-09 18:49:29  更:2022-04-09 18:50:46 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/16 21:13:08-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码