0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

PY32移植RT-Thread Nano记录

冬至子 来源:goldengrandpa 作者:goldengrandpa 2023-09-13 17:45 次阅读

这次简单的给PY32移植一下RT-Thread Nano

开发板:PY32F003_StartKit (PY32F003F16U Flash 32K SRAM 4K)

IDE:MDK5

1.准备工作

这里bsp我直接使用厂商提供的bsp,原本想要直接选择芯片自己新建工程的,但是根据官方的教程一直没有成功于是就直接用现成的bsp了

下载:点击Pack installer

1.jpg

选择RT-Thread进行下载

1.jpg

Manage Rum-Time Environment,本次我们就只移植kernel,shell暂时我还用不上所以就先不移植了

1.jpg

2.清除重定义
rt-thread在运行过程中会使用到HandFault_Handler和PendSV_Handler用于线程切换,异常处理,所以需要将py32f0xx_it.c中的这两个函数删除,否则链接时会提示重定义

还有mdk中main函数的入口函数extern int Super$main(void);原来是在system_py32f0xx.c中实现的,rtthread也进行了接管在启动流程中是如下流程

rt_application_init->main_thread_entry->Super$main(void),所以我们需要把system_py32f0xx.c中的删除

3.完成rt_hw_board_init
void rt_hw_board_init(void)
{
/*

  • TODO 1: OS Tick Configuration
  • Enable the hardware timer and call the rt_os_tick_callback function
  • periodically with the frequency RT_TICK_PER_SECOND.
    /
    /
    Call components board initial (use INIT_BOARD_EXPORT()) */
    HAL_Init();
    APP_SystemClockConfig(); // 配置系统时钟
    SystemCoreClockUpdate(); // 对系统时钟进行更新
    SysTick_Config(SystemCoreClock / RT_TICK_PER_SECOND);
    #ifdef RT_USING_COMPONENTS_INIT
    rt_components_board_init();
    #endif
    #if defined(RT_USING_USER_MAIN) && defined(RT_USING_HEAP)
    rt_system_heap_init(rt_heap_begin_get(), rt_heap_end_get());
    #endif
    }
    4.修改内存堆
    因为这个芯片sram很小所以我这里就给了2KB

#define RT_HEAP_SIZE (2*1024)
static rt_uint8_t rt_heap[RT_HEAP_SIZE];
5.愉快的点灯
/**

@file main.c
@author MCU Application Team
@brief Main program body

@attention

© Copyright (c) Puya Semiconductor Co. All rights reserved.

© Copyright (c) 2016 STMicroelectronics. All rights reserved.

This software component is licensed by ST under BSD 3-Clause license,
the "License"; You may not use this file except in compliance with the
License. You may obtain a copy of the License at:

opensource.org/licenses/BSD-3-Clause

/
/
Includes ------------------------------------------------------------------/
#include "main.h"
#include
/
Private define ------------------------------------------------------------/
/
Private variables ---------------------------------------------------------/
/
Private user code ---------------------------------------------------------/
/
Private macro -------------------------------------------------------------/
/
Private function prototypes -----------------------------------------------*/
/**

@brief 应用程序入口函数.
@retval int
/
static void APP_LedConfig(void);
int main(void)
{
APP_LedConfig();
while (1)
{
rt_thread_delay(500);
HAL_GPIO_TogglePin(GPIOB, GPIO_PIN_5);
}
}
/
*
@brief 错误执行函数
@param 无
@retval 无
/
void APP_ErrorHandler(void)
{
/
无限循环 /
while (1)
{
}
}
static void APP_LedConfig(void)
{
GPIO_InitTypeDef GPIO_InitStruct;
__HAL_RCC_GPIOB_CLK_ENABLE(); /
GPIOB时钟使能 /
GPIO_InitStruct.Pin = GPIO_PIN_5;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; /
推挽输出 /
GPIO_InitStruct.Pull = GPIO_PULLUP; /
使能上拉 /
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH; /
GPIO速度 /
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct); /
GPIO初始化 /
}
#ifdef USE_FULL_ASSERT
/
*
@brief 输出产生断言错误的源文件名及行号
@param file:源文件名指针
@param line:发生断言错误的行号
@retval 无
/
void assert_failed(uint8_t file, uint32_t line)
{
/
用户可以根据需要添加自己的打印信息,
例如: printf("Wrong parameters value: file %s on line %drn", file, line) /
/
无限循环 /
while (1)
{
}
}
#endif /
USE_FULL_ASSERT /
/
********************** (C) COPYRIGHT Puya END OF FILE *************/

结果:LED亮灭500ms

1.jpg

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • GPIO
    +关注

    关注

    16

    文章

    1196

    浏览量

    51896
  • SRAM存储器
    +关注

    关注

    0

    文章

    88

    浏览量

    13268
  • RT-Thread
    +关注

    关注

    31

    文章

    1271

    浏览量

    39902
  • 推挽输出
    +关注

    关注

    0

    文章

    41

    浏览量

    6512
  • HAL库
    +关注

    关注

    1

    文章

    114

    浏览量

    6168
收藏 人收藏

    评论

    相关推荐

    移植RT-Thread nano到CW32L083

    移植RT-Thread Nano到CW32L083开发板上,并成功运行。
    的头像 发表于 07-03 09:04 2.2w次阅读
    <b class='flag-5'>移植</b><b class='flag-5'>RT-Thread</b> <b class='flag-5'>nano</b>到CW32L083

    i.MX RT1170:VGLite移植RT-Thread Nano过程讲解(上)

    RT-Thread 是国人自主研发的开源实时操作系统(RTOS),RT-Thread Nano 是极简版的硬实时内核,内存占用小,移植简单。VGLite 是 NXP 提供的轻量级 2D
    的头像 发表于 11-09 11:20 2535次阅读
    i.MX <b class='flag-5'>RT</b>1170:VGLite<b class='flag-5'>移植</b><b class='flag-5'>RT-Thread</b> <b class='flag-5'>Nano</b>过程讲解(上)

    i.MX RT1170:VGLite移植RT-Thread Nano过程讲解(下)

    上篇介绍了如何移植 RT-Thread Nano 内核与 Finsh 控制台到 RT1170。本篇继续介绍如何将 NXP 官方的 VGLite API
    的头像 发表于 11-09 11:22 875次阅读

    基于 Keil MDK 移植 RT-Thread Nano

    基于 Keil MDK 移植 RT-Thread Nano 本文介绍如何基于 Keil MDK 移植 RT-Thread
    发表于 03-29 06:58

    如何基于CubeMX移植RT-Thread Nano

    本文介绍了如何基于 CubeMX 移植 RT-Thread Nano,并说明生成代码工程的步骤。RT-Thread Nano 已集成在 Cu
    发表于 03-29 06:56

    基于 Keil MDK 移植 RT-Thread Nano

    本文介绍如何基于 Keil MDK 移植 RT-Thread Nano ,并以一个 stm32f103 的基础工程作为示例进行讲解。RT-Thread
    发表于 05-19 18:15

    【国产MCU移植】HC32F460基于Keil MDK 移植 RT-Thread Nano

    【国产MCU移植】HC32F460基于Keil MDK 移植 RT-Thread Nano
    发表于 11-18 18:51 65次下载
    【国产MCU<b class='flag-5'>移植</b>】HC32F460基于Keil MDK <b class='flag-5'>移植</b> <b class='flag-5'>RT-Thread</b> <b class='flag-5'>Nano</b>

    【国产MCU系列】在 HK32F030 上移植 RT-Thread Nano

    如需下载相关开源资料请点击阅读原文这是一个航顺 HK32F030 的 RT-Thread Nano 移植示例,记录了在 Keil 裸机工程的基础上进行
    发表于 11-21 18:51 42次下载
    【国产MCU系列】在 HK32F030 上<b class='flag-5'>移植</b> <b class='flag-5'>RT-Thread</b> <b class='flag-5'>Nano</b>

    STM32 RT-Thread Nano(1)基于 Keil MDK 移植

    本文介绍如何基于 Keil MDK 移植 RT-Thread Nano ,并以一个 stm32f103 的基础工程作为示例进行讲解。开发平台:Keil MDK硬件平台:XNUCLEO-F103RB
    发表于 12-02 16:06 13次下载
    STM32 <b class='flag-5'>RT-Thread</b> <b class='flag-5'>Nano</b>(1)基于 Keil MDK <b class='flag-5'>移植</b>

    HC32F460移植RT-Thread Nano+FinSh工程源码下载

    HC32F460移植RT-Thread Nano+FinSh工程源码下载
    发表于 01-05 10:30 6次下载

    【国产MCU系列】在 HK32F030 上移植 RT-Thread Nano

    这是一个航顺 HK32F030 的 RT-Thread Nano 移植示例,记录了在 Keil 裸机工程的基础上进行 RT-Thread
    发表于 01-25 17:42 4次下载
    【国产MCU系列】在 HK32F030 上<b class='flag-5'>移植</b> <b class='flag-5'>RT-Thread</b> <b class='flag-5'>Nano</b>

    基于 Keil MDK 移植 RT-Thread Nano

    本文介绍如何基于 Keil MDK 移植 RT-Thread Nano ,并以一个 stm32f103 的基础工程作为示例进行讲解。 RT-Thread
    发表于 01-26 17:04 16次下载
    基于 Keil MDK <b class='flag-5'>移植</b> <b class='flag-5'>RT-Thread</b> <b class='flag-5'>Nano</b>

    如何创建RT-Thread Nano工程

    本文将尝试使用国产的嵌入式实时操作系统RT-Thread,相比较于FreeRTOS,RT-Thread还是有很多有点的,比如有Fish命令行界面,国产开源免费,Nano版本代码量极小,移植
    的头像 发表于 03-19 12:13 3741次阅读

    RT-Thread文档_RT-Thread SMP 介绍与移植

    RT-Thread文档_RT-Thread SMP 介绍与移植
    发表于 02-22 18:31 9次下载
    <b class='flag-5'>RT-Thread</b>文档_<b class='flag-5'>RT-Thread</b> SMP 介绍与<b class='flag-5'>移植</b>

    PY32移植RT-Thread Nano记录

    这里bsp我直接使用厂商提供的bsp,原本想要直接选择芯片自己新建工程的,但是根据官方的教程一直没有成功于是就直接用现成的bsp了
    的头像 发表于 06-07 15:17 1706次阅读
    <b class='flag-5'>PY32</b><b class='flag-5'>移植</b><b class='flag-5'>RT-Thread</b> <b class='flag-5'>Nano</b><b class='flag-5'>记录</b>