Skip to content

📼 This is a project to achieve compiling programs for the Arduino without any external programs like the Arduino IDE. It uses all the standard programs you love so much: make, cc, ... This is also the only way I was able to flash arduino programs to microcontrollers with the stk500.

License

Notifications You must be signed in to change notification settings

komputronika/ArduinoPure

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ArduinoPure

Copyright (c) 2012-2013, Daniel Bugl. All rights reserved. BSD open-source licensed, see LICENSE for further information.

Folder structure (new)

  • preconf/ - Preconfigured Makefiles for specific Arduino boards (eg, Arduino Uno) and programmer/chip combinations (eg, stk500 and atmega8)
  • templates/ - Makefile templates: Makefile.arduino for Arduino projects and Makefile.general for other projects.

Trying out ArduinoPure on an Arduino Uno

Note: All the Makefiles in the current repository have been tested and should work (besides the Makefile.general and Makefile.arduino file, those are templates). If something doesn't work for you, please open an issue report and I'll try to resolve this with you.

  1. Download ArduinoPure and cd into the directory.
  2. Run "make -o preconf/Makefile.arduino_uno" (for other setups, specify the right Makefile in the -o option)
  3. Run "make -o preconf/Makefile.arduino_uno upload" (again, specify the right Makefile in the -o option if you have a different setup than the Arduino Uno connected via USB)

Creating a new project with ArduinoPure

  1. Copy ArduinoPure into your project directory
  2. Copy the right makefile to "Makefile". Example: cp ./Makefile.stk500_atmega ./Makefile
  3. (Optional) To keep your project directory clean, delete the other Makefiles. You can also remove the main.cpp test file.
  4. Open up the Makefile file with an editor and change the project name (main) and source files (main.cpp)
  5. Run "make" to compile the project
  6. Run "make upload" to upload the compiled hex code to your microcontroller.

Hacking ArduinoPure

If you want to do more with ArduinoPure, you need to modify the Makefile. For Arduino projects, please edit the first few lines of the Makefile.arduino file For other projects (especially those that use the STK500, because its default configuration is to use the stk500 programmer), please edit the first few lines of the Makefile.general file.

About

📼 This is a project to achieve compiling programs for the Arduino without any external programs like the Arduino IDE. It uses all the standard programs you love so much: make, cc, ... This is also the only way I was able to flash arduino programs to microcontrollers with the stk500.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 55.7%
  • C 39.1%
  • Objective-C 5.2%