To work on mind motion MM32 microcontroller we need to install the keil uvision 5 version
then install the mm32-link programmer
go to library folder their you will get the
MM32F103_library_examples\MM32F103xx_m_Lib_Samples_V1.01_SC\MM32F103RegLibMB_Ver1.9.5\Boards_MM32x103\MB103CBT6_lib\BLINK\IOToggle\KEIL_PRJ
open the file in keil. options target their to need to do mm32-ulink.
/****************************************Copyright (c)****************************************************
**
**
**
**--------------File Info---------------------------------------------------------------------------------
** File name: main.c
** modified Date: 2019-12-04
** Last Version: V1.9.5
** Descriptions: Led blink program by anil durgam
**
*********************************************************************************************************/
#include "sys.h"
#include "delay.h"
#include "uart.h"
#include "led.h"
int main(void)
{
delay_init();
LED_Init();
while(1)
{
LED1=!LED1;
LED2=!LED2;
LED3=!LED3;
LED4=!LED4;
delay_ms(1000);
}
}
then install the mm32-link programmer
go to library folder their you will get the
MM32F103_library_examples\MM32F103xx_m_Lib_Samples_V1.01_SC\MM32F103RegLibMB_Ver1.9.5\Boards_MM32x103\MB103CBT6_lib\BLINK\IOToggle\KEIL_PRJ
open the file in keil. options target their to need to do mm32-ulink.
/****************************************Copyright (c)****************************************************
**
**
**
**--------------File Info---------------------------------------------------------------------------------
** File name: main.c
** modified Date: 2019-12-04
** Last Version: V1.9.5
** Descriptions: Led blink program by anil durgam
**
*********************************************************************************************************/
#include "sys.h"
#include "delay.h"
#include "uart.h"
#include "led.h"
int main(void)
{
delay_init();
LED_Init();
while(1)
{
LED1=!LED1;
LED2=!LED2;
LED3=!LED3;
LED4=!LED4;
delay_ms(1000);
}
}
No comments:
Post a Comment