Posted on April 20, 2013 at 17:42 The original post was too long to process during our migration. Please click on the attachment to read the original post.
Posted on April 09, 2013 at 19:01The original post was too long to process during our migration. Please click on the attachment to read the original post.
Posted on April 21, 2013 at 19:38clive1, I took your suggestions and updated all my serial routines. Serial seems to work just fine now. I just can't seem to get I2C to work reliably. I switched to using 2K pull up resistors, I switched everything o...
Posted on April 20, 2013 at 21:56I was originally handling bytes one at a time as they came in. It was place them in the buffer as they were read and move on. I changed to the blocking call you see now because it gave me fewer fits with the I2C bus....
Posted on April 19, 2013 at 02:23Took me a lot of looking, but I finally found the problem. I must have accidentally started a new c++ project when I made the project. My main file was named main.cpp instead of main, so the linker was just grabbing...
Posted on April 10, 2013 at 19:46Looking through the map file, the USART6_IRQHandler function is generated, but is not loaded into the vector table. In the startup file, there are a bunch of lines which say .weak XXX_IRQHandler .thumb_set XXX_IRQH...
Posted on April 10, 2013 at 14:25I understand most of that. I forgot to mention this is my first ARM board. I'm coming from the 8 bit AVR world where you usually don't deal with startup files and such. Are there any good tutorials anyone knows of on...