(1) 可以实现四种波形:正弦波、方波、三角波、锯齿波; (2) 通过按键进行选择,频率可以调整; (3) LCD液晶显示; (4)设计出来之后用Proteus软件仿真出效果;
主要硬件设备:STM32F103单片机、DAC0832数模转换芯片、矩阵键盘、LCD12864液晶屏幕。
效果图 正弦波
方波
三角波
锯齿波
单片机源程序如下:
- #include "stm32f10x.h"
- #include "sys.h"
- #include "delay.h"
- #include "12864.h"
- #include "key4_4.h"
- #include "timer.h"
- //LYF
- #define KEY0 GPIO_ReadInputDataBit(GPIOB,GPIO_Pin_10) //读取按键0
- void Delay_Ms(u16 time);
- /*************** 配置Switch用到的I/O口 *******************/
- void Init_GPIO_Switch(void)
- {
- GPIO_InitTypeDef GPIO_InitStructure;
-
- GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable, ENABLE);//关闭jtag,使能SWD,可以用SWD模式调试
-
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE); // 使能PC端口时钟
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; //PC0
- GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //IO口速度为50MHz
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //设置成输入
- GPIO_Init(GPIOB, &GPIO_InitStructure); //初始化PC0
- }
- /* Private functions ---------------------------------------------------------*/
- /*******************************************************************************
- *功能名称:main
- *描述:主程序。
- *输入:无
- *输出:无
- *返回:无
- *******************************************************************************/
- int main(void)
- {
- u8 i=0;
- RCC_ClocksTypeDef RCC_Clocks; //初始化程序
-
- RCC_Configuration(RCC_PLLMul_4); //8M*4 == 32M
- RCC_GetClocksFreq(&RCC_Clocks); //获取片上时钟
-
- Init_12864(); //初始化12864液晶
-
- Key_Init();
- Init_GPIO_Switch();
- Init_GPIO_DAC0832();
-
- Data0=25;
- TIM3_Int_Init(50+Data0,320); //频率:32000000/ 320 ==100 000 /100 == 1000 /50==20
-
- LCD_P6x8Str(3,16," Sine Wave ");
- LCD_P6x8Str(7,6*2,"Frequency: 15 Hz");
-
- while (1)
- {
- if(KEY0)
- {
- if(i!=2)
- {
- __set_PRIMASK(1);
- GPIO_ResetBits(GPIOB, ((uint16_t)0xC000));
- }
- Key_Test();
-
- i=2;
- }
- else{
-
- if(i!=5)
- {
- TIM3_Int_Init(50+Data0,320);
- __set_PRIMASK(0); //使能TIMx外设
- GPIO_ResetBits(GPIOB, ((uint16_t)0xC000));
- }
-
- i=5;
- }
- }
- }
- //LYF
复制代码
全部资料51hei下载地址:
|