- 博客(6)
- 资源 (1)
- 收藏
- 关注
转载 查看Keil编译代码大小
在Keil中编译代码,超出单片机的存储容量,会弹出以下错误。Error: L6406E: No space in execution regions with .ANY selector matching xxx.o.这里的Code、RO Data、RW Data、ZI Data是和前面Keil编译的结果相一致的。Code是代码占用的空间。RO data是 (Read Only )只读常量的大小,如const。RW data是(Read Write) 初始化了的可读写变量的大小。ZI data是
2021-09-03 13:42:32
783
原创 自己用C写了一个RGB转16位(RGB565)颜色的程序,供我32开发板上的TFT显示屏使用,现在分享出来
自己用C写了一个RGB转16位(RGB565)颜色的程序,供我32开发板上的TFT显示屏使用,现在分享出来`#include <stdio.h>#include <math.h>typedef unsigned char u8;void aaa(u8 *a,u8 tx){int t;for(t=0;t<8;t++){if((tx&0x80)>>7)a[t]=1;elsea[t]=0;tx<<=1; }}void
2020-05-21 15:41:32
1232
1
原创 基于stm32循迹小车运动实例
基于stm32循迹小车运动实例#include “motor.h”#include “Math.h”#include “delay.h”#include “stm32f10x.h” // Device headersigned short sPWMR,sPWML,dPWM;//GPIOÅäÖú¯Êý/*void MotorGPIO_Configur...
2020-01-03 13:53:07
2979
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人