Timeline for How can I program an arduino in pure C/C++?
Current License: CC BY-SA 4.0
16 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jan 4, 2022 at 0:52 | history | edited | sa_leinad | CC BY-SA 4.0 |
Improved searchability of question and hence answers.
|
| Jun 26, 2018 at 15:26 | history | edited | sa_leinad | CC BY-SA 4.0 |
Improved the formatting.
|
| Jun 26, 2018 at 5:38 | answer | added | sa_leinad | timeline score: 2 | |
| Oct 1, 2014 at 19:36 | comment | added | Chris Stratton | avr-gcc is a compiler, not a download tool. But anyone who has every used to the Arduino IDE with a USB-connected arduino has done so, yes. And I and many others have done it with plain C programs built from the command line with avr-gcc and flashed from the command line with avrdude (which is, after all, what the Arduino IDE quietly does on behalf of its user). There are many writeups online, it's a task beyond trivial summary in an SO answer. | |
| Oct 1, 2014 at 18:40 | comment | added | Treesrule14 | @ChrisStratton totally didn't see your first post sorry about that. Have you tried programming with avr-gcc over usb? | |
| Oct 1, 2014 at 14:42 | comment | added | Chris Stratton | @Treesrule14 - wrong again, you do not need a programmer. Avrdude will talk to the bootloader on the arduino just as readily to upload a hex file compiled from a stand alone C program as it will to upload one built by the Arduino IDE. | |
| Oct 1, 2014 at 0:29 | answer | added | albator | timeline score: 3 | |
| Sep 30, 2014 at 22:10 | comment | added | hobbs | You don't need any IDE. You can compile and upload using the toolchain that comes with Arduino. Look at Arduino.mk for example. | |
| Sep 30, 2014 at 19:29 | history | tweeted | twitter.com/#!/StackArduino/status/517033438092988416 | ||
| Sep 30, 2014 at 15:39 | comment | added | Treesrule14 | I believe you need a programmer. : ( | |
| Sep 30, 2014 at 15:00 | comment | added | ICRed | @Treesrule14 I have the atmel studio installed. I just cannot find any resources that might help me flash a program to the chip on the arduino using a bootloader (without a programmer). Is this even possible? | |
| Sep 30, 2014 at 14:56 | answer | added | soerium | timeline score: 4 | |
| Sep 30, 2014 at 14:42 | comment | added | Chris Stratton | @Treesrule14 that's a possibility, but not the only one, so it's untrue to say that it is necessary. If the Arduino IDE is installed, then so is the avr-gcc compiler on which it depends. | |
| Sep 30, 2014 at 14:34 | comment | added | Treesrule14 | So in order to program the 328 I believe you need to install atmel studio to compile your code and then use the command line command avrdude to put your compiled code onto the arduino. | |
| Sep 30, 2014 at 14:23 | review | First posts | |||
| Sep 30, 2014 at 15:35 | |||||
| Sep 30, 2014 at 14:19 | history | asked | ICRed | CC BY-SA 3.0 |