User Activity

Posted on June 11, 2018 at 08:37HiHow to change arduino uno code to STM32F103void setup(){ pinMode(9,OUTPUT); pinMode(10,OUTPUT); TCCR1B = (1<<WGM13)|(1<<CS10);  TCCR1A = (1<<COM1A1)|(1<<COM1B1)|(1<<COM1B0);  TIMSK1 = 1<<TOIE1; ICR1=511;  OCR1B=0; }...
Posted on May 03, 2018 at 13:55HiWhen I press the button Vo is not = vin, no respond to the button at all.Any suggestions ?#include <LiquidCrystal.h>LiquidCrystal lcd(PA0, PA1, PA2, PA3, PA4, PA5);int analogInput = PB0;const int ResetPin = PA7;float...
Posted on January 18, 2018 at 06:12HelloThis is a timer code for arduino Atmel can someone help me to convert for using it in STM32F103, please.// Set up timer 1. // Prescaler = 1, phase correct PWM mode, TOP = ICR1ATCCR1A = (1 << COM1A1) | (1 << WG...
Posted on September 26, 2017 at 02:05Hello I trying to build 14 Khz bandpass filter on stm32f103 any help will be appreciated. Ted
Posted on August 29, 2017 at 16:36HiWhen I copy and paste this program ( the rirst one with 285 lines)http://embeddedsystemengineering.blogspot.ca/2016/06/arm-cortex-m3-stm32f103-project-dsp.htmlI have an error:fatal error: stm32f10x.h: No such file...