All Projects → avikde → Koduino

avikde / Koduino

Licence: other
Arduino code for STM32 microcontrollers

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Koduino

Serial Studio
Multi-purpose serial data visualization & processing program
Stars: ✭ 1,168 (+1753.97%)
Mutual labels:  arduino, microcontroller, serial
Rf1101se Teensy
Driving one of those cheap RF1101SE boards with a Arduino or Teensy
Stars: ✭ 45 (-28.57%)
Mutual labels:  arduino, microcontroller, chip
Johnny Five
JavaScript Robotics and IoT programming framework, developed at Bocoup.
Stars: ✭ 12,498 (+19738.1%)
Mutual labels:  arduino, serial, chip
Platformio Core
PlatformIO is a professional collaborative platform for embedded development 👽 A place where Developers and Teams have true Freedom! No more vendor lock-in!
Stars: ✭ 5,539 (+8692.06%)
Mutual labels:  arduino, microcontroller
Cylon
JavaScript framework for robotics, drones, and the Internet of Things (IoT)
Stars: ✭ 3,862 (+6030.16%)
Mutual labels:  arduino, chip
Mightycore
Arduino hardware package for ATmega1284, ATmega644, ATmega324, ATmega324PB, ATmega164, ATmega32, ATmega16 and ATmega8535
Stars: ✭ 413 (+555.56%)
Mutual labels:  arduino, microcontroller
Stlink
Open source STM32 MCU programming toolset
Stars: ✭ 3,158 (+4912.7%)
Mutual labels:  board, chip
Wi Pwn
ESP8266 Deauther ​with a material design WebUI 📶
Stars: ✭ 839 (+1231.75%)
Mutual labels:  board, arduino
Minicore
Arduino hardware package for ATmega8, ATmega48, ATmega88, ATmega168, ATmega328 and ATmega328PB
Stars: ✭ 546 (+766.67%)
Mutual labels:  arduino, microcontroller
Ferret
Ferret is a free software lisp implementation for real time embedded control systems.
Stars: ✭ 878 (+1293.65%)
Mutual labels:  arduino, microcontroller
Pulsesensorstarterproject
The Best Way to Get Started with your PulseSensor and Arduino
Stars: ✭ 38 (-39.68%)
Mutual labels:  arduino, serial
Esp8266 deauther
Affordable WiFi hacking platform for testing and learning
Stars: ✭ 9,312 (+14680.95%)
Mutual labels:  board, arduino
Sim7000 Lte Shield
LTE CAT-M/NB-IoT Arduino-compatible shield with GNSS and temperature sensor. Library supports SIMCom 2G/3G/4G LTE/CAT-M/NB-IoT
Stars: ✭ 340 (+439.68%)
Mutual labels:  arduino, microcontroller
Platformio Atom Ide
PlatformIO IDE for Atom: The next generation integrated development environment for IoT
Stars: ✭ 475 (+653.97%)
Mutual labels:  arduino, microcontroller
Heatpump
Arduino library to control Mitsubishi Heat Pumps via connector cn105
Stars: ✭ 327 (+419.05%)
Mutual labels:  arduino, serial
Pyquino
python3 serial port with PyQt5 Gui
Stars: ✭ 19 (-69.84%)
Mutual labels:  arduino, serial
Eprom
Python script and Arduino code for burning eproms
Stars: ✭ 35 (-44.44%)
Mutual labels:  arduino, serial
Wattuino
Arduino compatible Boards and Modules based on Microchip ARM and AVR Microcontroller
Stars: ✭ 41 (-34.92%)
Mutual labels:  board, arduino
Opencr
Software for ROS Embedded board (a.k.a. OpenCR). OpenCR means Open-source Control Module for ROS.
Stars: ✭ 240 (+280.95%)
Mutual labels:  board, arduino
arduivis
a bi-directional communication paradigm for programming languages & microcontrollers
Stars: ✭ 48 (-23.81%)
Mutual labels:  microcontroller, serial

Documentation Status

Koduino

This is a library of code for boards developed using the STM32 F3/F4 microcontrollers, chosen for their great price/performance ratio, friendly built-in bootloaders, and (for the Cortex-M4F ones) FPU support.

Supported hardware

  • Upload methods: Serial (incl using USB-Serial adapters), ST-Link V2
  • Chip families: F301, F373, F405

Supported software

  • 95% of the Arduino core (felt no urgency to implement shiftOut or tone but they should be easy)
  • Libraries: Wire, SPI, EEPROM, Encoder, etc.
  • Important: Serialx (USART) is supported well, but SerialUSB (using USB CDC) is not supported yet--coming soon.
  • Documentation!

Why does this library exist?

Roger Clark compiled a list of other STM32 Arduino compatibility projects. I really began working on this because my initial F373-based hardware was not supported by any of them. Even so, I think this library may have some of the folowing benefits for others as well.

As a user

  1. Works with the Arduino IDE
  2. Awesome features that are not in Arduino: e.g.
    1. Hardware floating point, and advanced math libraries (Eigen is included)
    2. Non-blocking PWM input--use PWM as a fast, simple communication method
    3. Fast SD-card writing using SDIO
    4. Timer interrupts (run code with precise timing up to several MHz)
    5. ...
  3. Hands-free programming on boards with hardware support (FTDI chip with NRST/BOOT0 connections)
  4. Wireless programming on boards with hardware support (wireless-UART like XBee)
  5. Already in use in my several of my own critical projects, including
    1. "Flight control" boards with EKF orientation filtering, motor control and data logging @ 2 KHz
    2. Field-oriented brushless commutation @ 25 KHz

As a developer

  1. Porting to new chips: This process is much easier than with libmaple, or Aeroquad32, etc. because this library uses a (relatively) portable interface layer, the ST standard periperal library, to try and use the same Arduino core code to interface with several microcontrollers. The alternative, to begin with the register map for each new chip, is tedious at best (trust me, I tried ;) ).
  2. Open-source hardware: No custom bootloaders are required. You can literally make your own board from one of the reference designs (repo coming soon), or even begin straight from the microcontroller datasheet reference schematic, and get your own hardware working quickly.

Get started

1. Get code from this repository

If you're used to mercurial, git should be no problem. You can

  • Download the repository as a zip file, or
  • Clone it by typing git clone https://github.com/avikde/koduino.git at the location you want.

2. Program microcontrollers

Links to get started are at http://avikde.me/koduino.

Contribute

If this library is helpful to you, please consider contributing to it. The main areas that need help are:

  • Adding support for more chips
  • Maintaining upload tools for several OS'es / platforms, debugging wireless uploads, making uploads faster, etc.
  • Contributing to the Arduino core: I often leave out functionality that I don't need (e.g. tone) but someone might!

You are welcome to fork, and please submit pull requests if you do! Additionally, I would love to have direct collaborators who have commit access--don't hesitate to get it touch.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].