
sirbow2
Members-
Content Count
11 -
Joined
-
Last visited
Everything posted by sirbow2
-
hey trying to be helpful dont be a <what ever you want to use that's insulting> about it.
-
maybe you already used it or you already applied it to your order
-
i got it too! i got that error too, but IE didnt have except for one and then i just refreshed the page. the ti site was just really slow in general
-
STM32F4 Discovery plays a quicktime movie
sirbow2 replied to ahqbot1's topic in Other Microcontrollers
+1 oh and in the pic, you can see it says 240x320 on the red border -
Development environment for the Discovery F0 kit
sirbow2 replied to bytesize's topic in Other Microcontrollers
http://forum.arm-hq.com/topic/24-tutorialstm32f0-discovery-keil-ide-setup/ -
i got mine(F0) for free as a sample
-
Can't get button to turn on LED with STM32f0 :(
sirbow2 replied to sirbow2's topic in Other Microcontrollers
yeah, still not working. strange... -
Can't get button to turn on LED with STM32f0 :(
sirbow2 replied to sirbow2's topic in Other Microcontrollers
i figured it will be helpful in the future to know how to do this stuff, and not to use "libraries" of some sort. ill try that, thanks yes, i know, one will be on, one will be off when button is pressed, and the opposite if not pressed. -
im finally starting to get into the programming of my STM32f0Discovery board and i cant quite get my button to work. code: #include "stm32f0xx.h" int main(void); int main(void){ int i; // Enable clock for GPIOC RCC->AHBENR |= (1 << 19); GPIOC->MODER |= (1 << 16);//Set pin C8 as output GPIOC->OTYPER &= ~(1 << 8);//Set pin 8 output as internal push-pull GPIOC->MODER |= (1 << 18);//Set pin C9 as output GPIOC->OTYPER &= ~(1 << 9);//Set pin 9 output as internal push-pull // enable user PA0 button RCC->AHBENR |= (1 << 17); /*
-
[TUTORIAL]STM32F0 Discovery Keil IDE Setup
sirbow2 replied to sirbow2's topic in Other Microcontrollers
it's not my website, but i can find the right links for it and post them here. do you mean this topic or the "Compilers and IDE" subforum? i think this subforum is good where it's at. -
At first i tried to get Eclipse to work for my discovery board, but i couldn't figure it out, so, instead i tried the Keil IDE and have had very few issues since. Here's a quick tutorial: http://dduino.blogsp...very-board.html