• I want to send data by Virtual Terminal (in Proteus ) and print it on LCD . I just need to type something in the virtual terminal and it should be displayed on the LCD. I'm using keil uvision,stm32f103c6...
    #include "stm32f10x.h" #include <stdio.h> #define RS 0x0020; #define EN 0x0080; void USART2_write(int ch); char USART2_read (void); void delayMs (int delay); void LCD_command (unsigned char command...
  • I want to send data by Virtual Terminal (in Proteus ) and print it on LCD . I just need to type something in the virtual terminal and it should be displayed on the LCD. I'm using keil uvision,stm32f103c6...
    #include "stm32f10x.h" #include <stdio.h> #define RS 0x0020; #define EN 0x0080; void USART2_write(int ch); char USART2_read (void); void delayMs (int delay); void LCD_command (unsigned char command...
  • STM32 timer does not work like expected
    Hello, It's my first project with STM32 and ST firmware library. I have a problem with my timer configuration. I want a cyclic timer 2 interrupt all 100 us (10 kHz). So I configured the timer: ...
  • STM32 timer does not work like expected
    Hello, It's my first project with STM32 and ST firmware library. I have a problem with my timer configuration. I want a cyclic timer 2 interrupt all 100 us (10 kHz). So I configured the timer: ...
  • Want to store data in processors internal memory without erasing it.
    I am working on a project and would like to use a mico that supports J1850 and CAN protocols. I need to store data in the flash memory when an event occurs. I also need to store upto 5 data values one...