打印
[开发板与模块]

【ESK32-30519 + ESK32-21001测评】+浅用Freertos

[复制链接]
2043|34
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
夜声|  楼主 | 2022-9-10 21:42 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 夜声 于 2022-9-13 17:54 编辑

#申请原创#[url=home.php?mod=space&uid=760190]@21小跑堂 [/url] 如我所愿,在中秋节前这块板子到了我的手上,板子非常大一个,刚拿到也有点意外,在这里也感谢21ic和合泰能给我这次测评的机会。外观如下图所示:
板子很大,看起来也很大气,不过这个SDcard好大一个,应该很少能用上吧。接下来就是了解这个芯片的资料,直接上懒人包https://mcu.holtek.com.cn/ht32/resource/,将M0的全部下载下来。

在HT32M0\HT32_M0p_V20220611\Firmware_Library\project_template\IP\Example\MDK_ARMv5这个路径下找到工程文件夹,全部都是放在这里的,刚开始用还有点不习惯,第一次遇到将所有的工程文件放在一起的。找到HT3254253这个工程文件,后面就以这个文件进行开发,不用花其他时间去整理,新建也比较麻烦。

接下来下载Freertos源码,将源码复制到工程里面来

删除掉不使用的一些文件夹,留下RVDS以及MEM管理算法这两个文件夹即可

接下来在工程添加Freertos的源码,添加源码

添加头文件路径

接下来屏蔽掉it.c中的三个文件夹。

自己弄一个FreeRTOSConfig.h进行裁剪

接下来在主函数中创建三个线程,一个线程为启动线程,一个为LED1,还有一个为LED2,如下所示。
/*********************************************************************************************************//**
* [url=home.php?mod=space&uid=288409]@file[/url]    IP/Example/main.c
* [url=home.php?mod=space&uid=895143]@version[/url] $Rev:: 4869         $
* [url=home.php?mod=space&uid=212281]@date[/url]    $Date:: 2020-08-05 #$
* [url=home.php?mod=space&uid=247401]@brief[/url]   Main program.
*************************************************************************************************************
* @attention
*
* Firmware Disclaimer Information
*
* 1. The customer hereby acknowledges and agrees that the program technical documentation, including the
*    code, which is supplied by Holtek Semiconductor Inc., (hereinafter referred to as "HOLTEK") is the
*    proprietary and confidential intellectual property of HOLTEK, and is protected by copyright law and
*    other intellectual property laws.
*
* 2. The customer hereby acknowledges and agrees that the program technical documentation, including the
*    code, is confidential information belonging to HOLTEK, and must not be disclosed to any third parties
*    other than HOLTEK and the customer.
*
* 3. The program technical documentation, including the code, is provided "as is" and for customer reference
*    only. After delivery by HOLTEK, the customer shall use the program technical documentation, including
*    the code, at their own risk. HOLTEK disclaims any expressed, implied or statutory warranties, including
*    the warranties of merchantability, satisfactory quality and fitness for a particular purpose.
*
* <h2><center>Copyright (C) Holtek Semiconductor Inc. All rights reserved</center></h2>
************************************************************************************************************/
// <<< Use Configuration Wizard in Context Menu >>>

/* Includes ------------------------------------------------------------------------------------------------*/
#include "ht32.h"
#include "ht32_board.h"
#include "FreeRTOS.h"
#include "task.h"
#include "ht32f5xxxx_gpio.h"

/* Settings ------------------------------------------------------------------------------------------------*/
/* Private types -------------------------------------------------------------------------------------------*/
/* Private constants ---------------------------------------------------------------------------------------*/
/* Private function prototypes -----------------------------------------------------------------------------*/
void NVIC_Configuration(void);
void CKCU_Configuration(void);
void GPIO_Configuration(void);
#if (ENABLE_CKOUT == 1)
void CKOUTConfig(void);
#endif



//任务堆栈大小
#define LED1_TASK_STACK              256
#define LED2_TASK_STACK             256

//任务优先级
#define LED1_TASK_PRIORITY            5
#define LED2_TASK_PRIORITY           3




xTaskHandle startTask;
xTaskHandle LED1Task;
xTaskHandle LED2Task;


portTASK_FUNCTION(vLED1Task, pvParameters)
{
        while(1)
        {
     HT32F_DVB_LEDOn(HT_LED1);
     vTaskDelay(200);
         HT32F_DVB_LEDOff(HT_LED1);
         vTaskDelay(200);
        }
}

portTASK_FUNCTION(vLED2Task, pvParameters)
{        
        while(1)
        {
     HT32F_DVB_LEDOn(HT_LED2);
     vTaskDelay(500);
         HT32F_DVB_LEDOff(HT_LED2);
         vTaskDelay(500);
        }
}


/**********************************************************************************************************
*函 数 名: vStartTask
*功能说明: 系统启动任务,调用各类初始化函数,并创建消息队列和要运行的用户任务
*形    参: 无
*返 回 值: 无
**********************************************************************************************************/
portTASK_FUNCTION(vStartTask, pvParameters)
{
        xTaskCreate(vLED1Task, (char const*)"SensorReadTask",LED1_TASK_STACK, NULL, LED1_TASK_PRIORITY, &LED1Task);
        xTaskCreate(vLED2Task, (char const*)"SensorUpdateTask",LED2_TASK_STACK, NULL,LED2_TASK_PRIORITY, &LED2Task);
        
        //删除本任务
  vTaskDelete(NULL);
}

        

/* Private macro -------------------------------------------------------------------------------------------*/
/* Global variables ----------------------------------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------------------------------------*/
/* Global functions ----------------------------------------------------------------------------------------*/
/*********************************************************************************************************//**
  * [url=home.php?mod=space&uid=247401]@brief[/url]  Main program.
  * @retval None
  ***********************************************************************************************************/
int main(void)
{
        
  NVIC_Configuration();               /* NVIC configuration                                                 */
  CKCU_Configuration();               /* System Related configuration                                       */
  GPIO_Configuration();               /* GPIO Related configuration                                         */
  RETARGET_Configuration();           /* Retarget Related configuration                                     */

  HT32F_DVB_LEDInit(HT_LED1);
  HT32F_DVB_LEDInit(HT_LED2);
  HT32F_DVB_LEDInit(HT_LED3);
  HT32F_DVB_LEDOn(HT_LED1);
  HT32F_DVB_LEDOff(HT_LED2);
  HT32F_DVB_LEDOn(HT_LED3);

            //创建启动任务
    xTaskCreate(vStartTask, "startTask", 128, NULL, 0, &startTask);
    //OS调度器启动
    vTaskStartScheduler();

//  while (1)                           /* Infinite loop                                                      */
//  {
//   
//     HT32F_DVB_LEDOn(HT_LED1);
//     vTaskDelay(500);
//         HT32F_DVB_LEDOff(HT_LED1);
//         vTaskDelay(500);
//  }
}

/*********************************************************************************************************//**
  * @brief  Configure the NVIC vector table.
  * @retval None
  ***********************************************************************************************************/
void NVIC_Configuration(void)
{
  NVIC_SetVectorTable(NVIC_VECTTABLE_FLASH, 0x0);     /* Set the Vector Table base location at 0x00000000   */
}

/*********************************************************************************************************//**
  * @brief  Configure the system clocks.
  * @retval None
  ***********************************************************************************************************/
void CKCU_Configuration(void)
{
/*
//<e0> Enable Peripheral Clock
//  <h> Communication
//    <q5> EBI
//    <q11> I2C0   <q12> I2C1
//    <q23> I2S
//    <q21> SCI0 <q22> SCI1
//    <q13> SPI0   <q14> SPI1
//    <q17> UART0  <q18> UART1
//    <q15> USART0 <q16> USART1
//    <q3>  USB
//  </h>
//  <h> IO
//    <q7> GPIO Port A <q8>  GPIO Port B <q9>  GPIO Port C <q10>  GPIO Port D
//    <q19> AFIO
//    <q20> EXTI
//  </h>
//  <h> System
//    <q32> ADC
//    <q4>  CKREF
//    <q6>  CRC
//    <q31> CMP
//    <q2>  PDMA
//    <q26> PWRCU
//  </h>
//  <h> Timer
//    <q29> BFTM0 <q30> BFTM1
//    <q33> SCTM0 <q34> SCTM1 <q35> SCTM2 <q36> SCTM3
//    <q27> GPTM0 <q28> GPTM1
//    <q24> MCTM0
//    <q26> RTC   <q25> WDT
//  </h>
//</e>
*/
#if 1
  CKCU_PeripClockConfig_TypeDef CKCUClock = {{ 0 }};
  CKCUClock.Bit.PDMA       = 0;
  CKCUClock.Bit.USBD       = 0;
  CKCUClock.Bit.CKREF      = 0;
  CKCUClock.Bit.EBI        = 0;
  CKCUClock.Bit.CRC        = 0;
  CKCUClock.Bit.PA         = 0;
  CKCUClock.Bit.PB         = 0;
  CKCUClock.Bit.PC         = 0;
  CKCUClock.Bit.PD         = 0;
  CKCUClock.Bit.I2C0       = 0;
  CKCUClock.Bit.I2C1       = 0;
  CKCUClock.Bit.SPI0       = 0;
  CKCUClock.Bit.SPI1       = 0;
  CKCUClock.Bit.USART0     = 1;
  CKCUClock.Bit.USART1     = 1;
  CKCUClock.Bit.UART0      = 1;
  CKCUClock.Bit.UART1      = 1;
  CKCUClock.Bit.AFIO       = 1;
  CKCUClock.Bit.EXTI       = 0;
  CKCUClock.Bit.SCI0       = 0;
  CKCUClock.Bit.SCI1       = 0;
  CKCUClock.Bit.I2S        = 0;
  CKCUClock.Bit.MCTM0      = 0;
  CKCUClock.Bit.WDT        = 0;
  CKCUClock.Bit.BKP        = 0;
  CKCUClock.Bit.GPTM0      = 0;
  CKCUClock.Bit.GPTM1      = 0;
  CKCUClock.Bit.BFTM0      = 0;
  CKCUClock.Bit.BFTM1      = 0;
  CKCUClock.Bit.CMP        = 0;
  CKCUClock.Bit.ADC        = 0;
  CKCUClock.Bit.SCTM0      = 0;
  CKCUClock.Bit.SCTM1      = 0;
  CKCUClock.Bit.SCTM2      = 0;
  CKCUClock.Bit.SCTM3      = 0;
  CKCU_PeripClockConfig(CKCUClock, ENABLE);
#endif

#if (ENABLE_CKOUT == 1)
  CKOUTConfig();
#endif
}

#if (ENABLE_CKOUT == 1)
/*********************************************************************************************************//**
  * @brief  Configure the debug output clock.
  * @retval None
  ***********************************************************************************************************/
void CKOUTConfig(void)
{
  { /* Enable peripheral clock                                                                              */
    CKCU_PeripClockConfig_TypeDef CKCUClock = {{ 0 }};
    CKCUClock.Bit.AFIO = 1;
    CKCU_PeripClockConfig(CKCUClock, ENABLE);
  }

  AFIO_GPxConfig(GPIO_PA, AFIO_PIN_9, AFIO_MODE_15);

  { /* Configure CKOUT                                                                                      */
    CKCU_CKOUTInitTypeDef CKOUTInit;
    CKOUTInit.CKOUTSRC = CKCU_CKOUTSRC_HCLK_DIV16;
    CKCU_CKOUTConfig(&CKOUTInit);
  }
}
#endif

/*********************************************************************************************************//**
  * @brief  Configure the GPIO ports.
  * @retval None
  ***********************************************************************************************************/
void GPIO_Configuration(void)
{
  /* !!! NOTICE !!!
     Shall be modified according to the part number.
  */
#if (RETARGET_PORT == RETARGET_USART0)
  //AFIO_GPxConfig(GPIO_PA, AFIO_PIN_2 | AFIO_PIN_3, AFIO_FUN_USART_UART);
#endif

#if (RETARGET_PORT == RETARGET_USART1)
  //AFIO_GPxConfig(GPIO_PA, AFIO_PIN_4 | AFIO_PIN_5, AFIO_FUN_USART_UART);
#endif

#if (RETARGET_PORT == RETARGET_UART0)
  //AFIO_GPxConfig(GPIO_PC, AFIO_PIN_4 | AFIO_PIN_5, AFIO_FUN_USART_UART);
#endif

#if (RETARGET_PORT == RETARGET_UART1)
  //AFIO_GPxConfig(GPIO_PC, AFIO_PIN_1 | AFIO_PIN_3, AFIO_FUN_USART_UART);
#endif
}

#if (HT32_LIB_DEBUG == 1)
/*********************************************************************************************************//**
  * @brief  Report both the error name of the source file and the source line number.
  * @param  filename: pointer to the source file name.
  * @param  uline: error line source number.
  * @retval None
  ***********************************************************************************************************/
void assert_error(u8* filename, u32 uline)
{
  /*
     This function is called by IP library that the invalid parameters has been passed to the library API.
     Debug message can be added here.
     Example: printf("Parameter Error: file %s on line %d\r\n", filename, uline);
  */

  while (1)
  {
  }
}
#endif

实现结果,可以发现LED2闪得比较快,200ms,LED相对比较慢,500ms。


使用特权

评论回复

相关帖子

沙发
weifeng90| | 2022-9-10 22:52 | 只看该作者
这套开发板两个板子?

使用特权

评论回复
评论
夜声 2022-9-11 08:45 回复TA
有个扩展板 
板凳
海滨消消| | 2022-9-13 15:15 | 只看该作者
这开发板真的够大的

使用特权

评论回复
地板
海滨消消| | 2022-9-13 15:16 | 只看该作者
很少看到这么大的开发板

使用特权

评论回复
5
Stahan| | 2022-9-13 21:17 | 只看该作者
这开发板真大

使用特权

评论回复
6
bestwell| | 2022-10-9 21:37 | 只看该作者
freertos要学多长时间        

使用特权

评论回复
7
macpherson| | 2022-10-9 21:46 | 只看该作者
freertos任务切换需要多少个时钟周期

使用特权

评论回复
8
nomomy| | 2022-10-9 22:11 | 只看该作者
FreeRTOS和UCOSIII哪个更适合     

使用特权

评论回复
9
232321122| | 2022-10-9 22:43 | 只看该作者
freertos时实系统的栈最大是多少

使用特权

评论回复
10
isseed| | 2022-10-10 17:38 | 只看该作者
freertos占用多少ram           

使用特权

评论回复
11
isseed| | 2022-10-10 20:07 | 只看该作者
在学习freertos之前,应学习哪些东西

使用特权

评论回复
12
gygp| | 2023-1-5 12:20 | 只看该作者
这个非常详细的Freertos移植教程。

使用特权

评论回复
13
ccook11| | 2023-1-5 18:23 | 只看该作者
可配置转换片轮的时间吗?              

使用特权

评论回复
14
chenjun89| | 2023-1-5 23:20 | 只看该作者
嗯,这个开发板够良心啊,外部资源配置还多。

使用特权

评论回复
15
robertesth| | 2023-1-6 17:06 | 只看该作者
Freertos怎么调用定时器?

使用特权

评论回复
16
elsaflower| | 2023-1-6 17:56 | 只看该作者
板子非常棒,期待楼主更多的分享。

使用特权

评论回复
17
loutin| | 2023-1-6 18:55 | 只看该作者
请问,不同任务之间是如何通信的?

使用特权

评论回复
18
febgxu| | 2023-1-6 19:46 | 只看该作者
最多建立几个任务?              

使用特权

评论回复
19
yorkbarney| | 2023-1-6 20:17 | 只看该作者
Freertos内可以使用外部中断的吗?

使用特权

评论回复
20
zerorobert| | 2023-1-6 20:47 | 只看该作者
Freertos应用的真是多。              

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

26

主题

85

帖子

2

粉丝