-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
276 changed files
with
40,778 additions
and
52,767 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// File: STM32F101_102_103_105_107.dbgconf | ||
// Version: 1.0.0 | ||
// Note: refer to STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx Reference manual (RM0008) | ||
// STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx datasheets | ||
|
||
// <<< Use Configuration Wizard in Context Menu >>> | ||
|
||
// <h> Debug MCU configuration register (DBGMCU_CR) | ||
// <i> Reserved bits must be kept at reset value | ||
// <o.30> DBG_TIM11_STOP <i> TIM11 counter stopped when core is halted | ||
// <o.29> DBG_TIM10_STOP <i> TIM10 counter stopped when core is halted | ||
// <o.28> DBG_TIM9_STOP <i> TIM9 counter stopped when core is halted | ||
// <o.27> DBG_TIM14_STOP <i> TIM14 counter stopped when core is halted | ||
// <o.26> DBG_TIM13_STOP <i> TIM13 counter stopped when core is halted | ||
// <o.25> DBG_TIM12_STOP <i> TIM12 counter stopped when core is halted | ||
// <o.21> DBG_CAN2_STOP <i> Debug CAN2 stopped when core is halted | ||
// <o.20> DBG_TIM7_STOP <i> TIM7 counter stopped when core is halted | ||
// <o.19> DBG_TIM6_STOP <i> TIM6 counter stopped when core is halted | ||
// <o.18> DBG_TIM5_STOP <i> TIM5 counter stopped when core is halted | ||
// <o.17> DBG_TIM8_STOP <i> TIM8 counter stopped when core is halted | ||
// <o.16> DBG_I2C2_SMBUS_TIMEOUT <i> SMBUS timeout mode stopped when core is halted | ||
// <o.15> DBG_I2C1_SMBUS_TIMEOUT <i> SMBUS timeout mode stopped when core is halted | ||
// <o.14> DBG_CAN1_STOP <i> Debug CAN1 stopped when Core is halted | ||
// <o.13> DBG_TIM4_STOP <i> TIM4 counter stopped when core is halted | ||
// <o.12> DBG_TIM3_STOP <i> TIM3 counter stopped when core is halted | ||
// <o.11> DBG_TIM2_STOP <i> TIM2 counter stopped when core is halted | ||
// <o.10> DBG_TIM1_STOP <i> TIM1 counter stopped when core is halted | ||
// <o.9> DBG_WWDG_STOP <i> Debug window watchdog stopped when core is halted | ||
// <o.8> DBG_IWDG_STOP <i> Debug independent watchdog stopped when core is halted | ||
// <o.2> DBG_STANDBY <i> Debug standby mode | ||
// <o.1> DBG_STOP <i> Debug stop mode | ||
// <o.0> DBG_SLEEP <i> Debug sleep mode | ||
// </h> | ||
DbgMCU_CR = 0x00000007; | ||
|
||
// <<< end of configuration section >>> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "system.h" | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#include "usart.h" | ||
|
||
int fputc(int ch,FILE *p) //函数默认的,在使用printf函数时自动调用 | ||
{ | ||
USART_SendData(USART1,(u8)ch); | ||
while(USART_GetFlagStatus(USART1,USART_FLAG_TXE)==RESET); | ||
return ch; | ||
} | ||
|
||
/******************************************************************************* | ||
* 函 数 名 : USART1_Init | ||
* 函数功能 : USART1初始化函数 | ||
* 输 入 : bound:波特率 | ||
* 输 出 : 无 | ||
*******************************************************************************/ | ||
void USART1_Init(u32 bound) | ||
{ | ||
//GPIO端口设置 | ||
GPIO_InitTypeDef GPIO_InitStructure; | ||
USART_InitTypeDef USART_InitStructure; | ||
NVIC_InitTypeDef NVIC_InitStructure; | ||
|
||
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE); | ||
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE); | ||
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE); //打开时钟 | ||
|
||
|
||
/* 配置GPIO的模式和IO口 */ | ||
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_9;//TX //串口输出PA9 | ||
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz; | ||
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_AF_PP; //复用推挽输出 | ||
GPIO_Init(GPIOA,&GPIO_InitStructure); /* 初始化串口输入IO */ | ||
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_10;//RX //串口输入PA10 | ||
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IN_FLOATING; //模拟输入 | ||
GPIO_Init(GPIOA,&GPIO_InitStructure); /* 初始化GPIO */ | ||
|
||
|
||
//USART1 初始化设置 | ||
USART_InitStructure.USART_BaudRate = bound;//波特率设置 | ||
USART_InitStructure.USART_WordLength = USART_WordLength_8b;//字长为8位数据格式 | ||
USART_InitStructure.USART_StopBits = USART_StopBits_1;//一个停止位 | ||
USART_InitStructure.USART_Parity = USART_Parity_No;//无奇偶校验位 | ||
USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;//无硬件数据流控制 | ||
USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //收发模式 | ||
USART_Init(USART1, &USART_InitStructure); //初始化串口1 | ||
|
||
USART_Cmd(USART1, ENABLE); //使能串口1 | ||
|
||
USART_ClearFlag(USART1, USART_FLAG_TC); | ||
|
||
USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);//开启相关中断 | ||
|
||
//Usart1 NVIC 配置 | ||
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;//串口1中断通道 | ||
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3;//抢占优先级3 | ||
NVIC_InitStructure.NVIC_IRQChannelSubPriority =3; //子优先级3 | ||
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ通道使能 | ||
NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器、 | ||
} | ||
|
||
/******************************************************************************* | ||
* 函 数 名 : USART1_IRQHandler | ||
* 函数功能 : USART1中断函数 | ||
* 输 入 : 无 | ||
* 输 出 : 无 | ||
*******************************************************************************/ | ||
void USART1_IRQHandler(void) //串口1中断服务程序 | ||
{ | ||
u8 r; | ||
if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET) //接收中断 | ||
{ | ||
r =USART_ReceiveData(USART1);//(USART1->DR); //读取接收到的数据 | ||
USART_SendData(USART1,r); | ||
while(USART_GetFlagStatus(USART1,USART_FLAG_TC) != SET); | ||
} | ||
USART_ClearFlag(USART1,USART_FLAG_TC); | ||
} | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#ifndef __usart_H | ||
#define __usart_H | ||
|
||
#include "system.h" | ||
#include "stdio.h" | ||
|
||
void USART1_Init(u32 bound); | ||
|
||
|
||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
# AWTK 针对腾讯 OS(STM32f103ze) 的移植。 | ||
# AWTK针对STM32f103ze的移植。 | ||
|
||
* [AWTK](https://github.com/zlgopen/awtk) 全称 Toolkit AnyWhere,是 [ZLG](http://www.zlg.cn/) 开发的开源 GUI 引擎,旨在为嵌入式系统、WEB、各种小程序、手机和 PC 打造的通用 GUI 引擎,为用户提供一个功能强大、高效可靠、简单易用、可轻松做出炫酷效果的 GUI 引擎。 | ||
|
||
* [腾讯 TOS](https://github.com/Tencent/TencentOS-tiny) 是腾讯面向物联网领域开发的实时操作系统,具有低功耗,低资源占用,模块化,安全可靠等特点,可有效提升物联网终端产品开发效率。TencentOS tiny 提供精简的 RTOS 内核,内核组件可裁剪可配置,可快速移植到多种主流 MCU (如 STM32 全系列)及模组芯片上。而且,基于 RTOS 内核提供了丰富的物联网组件,内部集成主流物联网协议栈(如 CoAP/MQTT/TLS/DTLS/LoRaWAN/NB-IoT 等),可助力物联网终端设备及业务快速接入腾讯云物联网平台。 | ||
|
||
* [awtk-stm32f103ze-tencentos](https://github.com/zlgopen/awtk-stm32f103ze-tencentos) 是 AWTK 在 [腾讯 TOS](https://github.com/Tencent/TencentOS-tiny) 上的移植。 | ||
[awtk-stm32f103ze-raw](https://github.com/zlgopen/awtk-stm32f103ze-raw)是AWTK在STM32f103ze上的移植。 | ||
|
||
> 本项目以 [普中科技 STM32F103ZET6 开发实验板](https://item.taobao.com/item.htm?spm=a230r.1.14.1.50a130e8TMKYMC&id=558855281660&ns=1&abbucket=5#detail) 为载体移植,其它开发板可能要做些修改,有问题请请创建 issue。 | ||
本项目以[普中科技STM32F103ZET6开发实验板](https://item.taobao.com/item.htm?spm=a230r.1.14.1.50a130e8TMKYMC&id=558855281660&ns=1&abbucket=5#detail) 为载体移植,其它开发板可能要做些修改,有问题请请创建issue。 | ||
|
||
## 编译 | ||
|
||
1. 获取源码 | ||
|
||
``` | ||
git clone https://github.com/zlgopen/awtk-stm32f103ze-tencentos.git | ||
cd awtk-stm32f103ze-tencentos | ||
git clone https://github.com/zlgopen/awtk-stm32f103ze-raw.git | ||
cd awtk-stm32f103ze-raw | ||
git clone https://github.com/zlgopen/awtk.git | ||
``` | ||
|
||
2. 用 keil 打开 user/awtk.uvproj | ||
2. 用keil打开awtk.uvproj | ||
|
||
## 文档 | ||
|
||
* [AWTK 在腾讯 TOS 上的移植笔记](docs/tos-port.md) | ||
|
||
* [AWTK 在 STM32F103 裸系统上的移植笔记](https://github.com/zlgopen/awtk/blob/master/docs/porting_to_stm32f103ze.md) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.