A compiler transforms code written in a source language to a (binary) target language.
21
votes
11answers
9k views
ARM Cortex-M3 development tools?
I am planning to migrate to the NXP Cortex M3 architecture and I'm a little lost between the existant development tools.
Keil is expensive and I don't know if it's worth it.
Anyone who has tried some ...
10
votes
2answers
637 views
Compiling code to run from external RAM
I am considering designs for a minimalist game system based on a PIC18F85J5. Part of my design is that games can be loaded from an SD card without reprogramming the chip or flashing the program ...
5
votes
5answers
628 views
Is there a development system for the MSP430F series microcontrollers?
I'm hoping for an IDE of some kind, but I'll take any compiler or assembler! Can't seem to find anything by googling.
7
votes
8answers
4k views
Best way to install arm-elf-gcc onto a Linux machine
Hey folks,
I'm working on a device using arm-elf-gcc to compile code for a MakingThings prototype board. My development machine is a Linux box running Ubuntu 9.10. On a different linux box using ...
5
votes
5answers
212 views
Integer to ASCII in C18
I'm writing code for a PIC18F46K22 using the C18 compiler. I want to write the value of an integer \$n\$ in ASCII over the USART to my PC.
For \$n<10\$, it's easy:
...
3
votes
1answer
65 views
Integers >9999 in PIC C18
In this answer, I made a function to convert an integer to an ASCII string:
...