本帖最后由 谦虚 于 2016-12-8 21:37 编辑
我编写的程序的目的是 通过上位机修改存储器里的数据
方法是 上位机通过串口给STM32传输数据, 通过按键STM32写入存储器、读出存储器的数据。
但是现在的问题是,通过上位机发给STM32的数据,从存储器里读出来不对。现在的问题是 单步运行的时候,串口接收的数据是正确的,全速运行的时候串口接收的不对不管发什么接收的都是10.
下边是主程序
#include"usartmy.h"
#include"delay.h"
#include"sys.h"
#include"led.h"
#include"key.h"
#include"iic.h"
#include"24cxx.h"
#include"usart.h"
//要写入到24c02的数据
u8 Res=100;
int main()
{
u8 key;
u8 i=0;
u8 datatemp;
delay_init(); //延时函数初始化
usartmy_init(115200); //串口初始化波特率设置为115200
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); //设置NVIC中断分组2:2位抢占优先级,2位响应优先级
LED_Init(); //LED端口初始化
KEY_Init(); //按键初始化
AT24CXX_Init(); //IIC初始化
printf("24C02 Ready!");
while(1)
{
key=KEY_Scan(0);
if(key==KEY1_PRES)//KEY_UP按下,写入24C02
{
printf("Start Write 24C02....");
AT24CXX_WriteOneByte(0,Res);
printf("24C02 Write Finished!");//提示传送完成
}
if(key==KEY0_PRES)//KEY1按下,读取字符串并显示
{
printf("Start Read 24C02....");
datatemp=AT24CXX_ReadOneByte(0);
printf("The Data Readed Is: ");
printf("%d",datatemp);
}
i++;
delay_ms(10);
if(i==20)
{
LED0=!LED0;//提示系统正在运行
i=0;
}
}
}
下边是 串口的程序
#include "sys.h"
#include"usartmy.h"
#include"delay.h"
#include"led.h"
extern u8 Res;
void usartmy_init(u32 bound) //串口初始化函数
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1|RCC_APB2Periph_GPIOA, ENABLE); //串口1时钟使能,GPIOA端口时钟使能
USART_DeInit(USART1); //串口复位
//USART1_TX GPIOA.9模式设置(GPIO口复用)
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; //PA.9
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出
GPIO_Init(GPIOA, &GPIO_InitStructure);//初始化GPIOA.9
//USART1_RX GPIOA.10模式设置(GPIO口复用)
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;//PA10
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//浮空输入
GPIO_Init(GPIOA, &GPIO_InitStructure);//初始化GPIOA.10
//Usart1 NVIC 配置
NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3 ;//抢占优先级3
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; //子优先级3
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ通道使能
NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器
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_ITConfig(USART1, USART_IT_RXNE, ENABLE);//开启串口接受中断
USART_Cmd(USART1, ENABLE); //使能串口1
}
void USART1_IRQHandler(void) //串口1中断服务程序
{
if(USART_GetFlagStatus(USART1,USART_FLAG_RXNE)!=RESET)
{
Res =USART_ReceiveData(USART1); //读取接收到的数据
}
}
下边是 存储芯片的程序
#include "24cxx.h"
#include "delay.h"
//初始化IIC接口
void AT24CXX_Init(void)
{
IIC_Init();
}
//在AT24CXX指定地址读出一个数据
//ReadAddr:开始读数的地址
//返回值 :读到的数据
u8 AT24CXX_ReadOneByte(u16 ReadAddr)
{
u8 temp=0;
IIC_Start();
if(EE_TYPE>AT24C16)
{
IIC_Send_Byte(0XA0); //发送写命令
IIC_Wait_Ack();
IIC_Send_Byte(ReadAddr>>8);//发送高地址
IIC_Wait_Ack();
}else IIC_Send_Byte(0XA0+((ReadAddr/256)<<1)); //发送器件地址0XA0,写数据
IIC_Wait_Ack();
IIC_Send_Byte(ReadAddr%256); //发送低地址
IIC_Wait_Ack();
IIC_Start();
IIC_Send_Byte(0XA1); //进入接收模式
IIC_Wait_Ack();
temp=IIC_Read_Byte(0);
IIC_Stop();//产生一个停止条件
return temp;
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
谢谢
上位机的问题? 我看看 谢谢
谢谢了
一周热门 更多>