All Projects → abdalmoniem → Avr4l

abdalmoniem / Avr4l

Licence: gpl-3.0
AVR4L

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Avr4l

Embox
Modular and configurable OS for embedded applications
Stars: ✭ 576 (+800%)
Mutual labels:  microcontroller
Stm32liquidcrystal
Liquid Crystal Library for STM32
Stars: ✭ 24 (-62.5%)
Mutual labels:  microcontroller
Cmsis Header Stm32
CMSIS device headers for all STM32 devices
Stars: ✭ 47 (-26.56%)
Mutual labels:  microcontroller
Guilite
✔️The smallest header-only GUI library(4 KLOC) for all platforms
Stars: ✭ 5,841 (+9026.56%)
Mutual labels:  microcontroller
Espflix
A free video streaming service that runs on a ESP32
Stars: ✭ 828 (+1193.75%)
Mutual labels:  microcontroller
Attinycore
Arduino core for ATtiny 1634, 828, x313, x4, x41, x5, x61, x7 and x8
Stars: ✭ 974 (+1421.88%)
Mutual labels:  microcontroller
Minicore
Arduino hardware package for ATmega8, ATmega48, ATmega88, ATmega168, ATmega328 and ATmega328PB
Stars: ✭ 546 (+753.13%)
Mutual labels:  microcontroller
Koduino
Arduino code for STM32 microcontrollers
Stars: ✭ 63 (-1.56%)
Mutual labels:  microcontroller
Awesome Embedded
A curated list of awesome embedded programming.
Stars: ✭ 831 (+1198.44%)
Mutual labels:  microcontroller
Rf1101se Teensy
Driving one of those cheap RF1101SE boards with a Arduino or Teensy
Stars: ✭ 45 (-29.69%)
Mutual labels:  microcontroller
Cortex M Rtic
Real-Time Interrupt-driven Concurrency (RTIC) framework for ARM Cortex-M microcontrollers
Stars: ✭ 623 (+873.44%)
Mutual labels:  microcontroller
Platformio Vscode Ide
PlatformIO IDE for VSCode: The next generation integrated development environment for IoT
Stars: ✭ 676 (+956.25%)
Mutual labels:  microcontroller
Tinygo
Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.
Stars: ✭ 9,068 (+14068.75%)
Mutual labels:  microcontroller
Incubator Nuttx
Apache NuttX is a mature, real-time embedded operating system (RTOS)
Stars: ✭ 591 (+823.44%)
Mutual labels:  microcontroller
Sdcc Examples
Code examples for microcontrollers ready to compile with SDCC
Stars: ✭ 51 (-20.31%)
Mutual labels:  microcontroller
Pyocd
Open source Python library for programming and debugging Arm Cortex-M microcontrollers
Stars: ✭ 550 (+759.38%)
Mutual labels:  microcontroller
Ferret
Ferret is a free software lisp implementation for real time embedded control systems.
Stars: ✭ 878 (+1271.88%)
Mutual labels:  microcontroller
Avr Cheat Sheet
AVR cheat sheet for the ATmega328p
Stars: ✭ 64 (+0%)
Mutual labels:  microcontroller
Mcusim
MCUSim is an XSPICE library with microcontrollers.
Stars: ✭ 59 (-7.81%)
Mutual labels:  microcontroller
Utensor cgen
C++ code generator for uTensor https://utensor-cgen.readthedocs.io/en/latest/
Stars: ✭ 42 (-34.37%)
Mutual labels:  microcontroller

AVR4L Screenshot

About:

AVR4L aims to deliver an easy to use and user friendly Integrated Development Environment for developing Codes for microcontrollers based on Atmel's AVR families. AVR4L is a Creative coding / Integrated Development Environment for Linux operating systems intended for AVR beginners as well as professionals, it has many features from professional IDEs as well as the simplicity of editing.

Installation and Running:

Linux:

  1. Make sure Java JDK / JRE v1.8 is installed on your computer.
    1. How to install: https://java.com/en/download/help/linux_x64_install.xml
    2. Set JAVA_HOME environment variable, by doing the following:
      1. Depending on where you installed your Java, you will need to provide the full path. For this example, I installed Oracle JDK 8 in the /usr/lib/jvm/java-8-oracle directory.

      2. Open the file /etc/environment and scroll to the end of the file and enter the following:

        JAVA_HOME=/usr/lib/jvm/java-8-oracle

      3. Save and source the file by doing:

        . /etc/environment or source /etc/environment

  2. Clone/download this folder to your computer.
  3. cd into the Binaries/Linux directory.
  4. run sudo -E ./install.sh within this folder.
  5. you can now type avr4l in any terminal session or find it in the dash if you have Ubuntu installed.

Windows:

  1. Make sure Java JDK / JRE v1.8 is installed on your computer.

    1. How to install: https://java.com/en/download/windows_offline.jsp
  2. Clone/download this folder to your computer.

  3. cd into the Binaries\Windows\installer project\AVR4L-SetupFiles directory.

  4. (recommended) install AVR4L Setup.exe

  5. or run the AVR4L.exe directly from the portable folder.

    note: windows version is not fully tested and may be unstable, it is intended for cross platform compatability.

    note: if you want to use the portable version you must make sure that portable\avr-tools\bin and portable\tools\bin directories are added to the PATH system environment variable.

    The project's full focus is on the linux version as it aims to be an alternative to Atmel's Studio for linux users.

Features:

  1. Cross platform (Linux, Windows)
  2. Creative coding environment with auto-complete, suggestions and many more features.
  3. Two options for compiling and uploading your code:
    1. standard mode.
    2. makefile mode.
  4. Compiling .c files of various atmega parts or microcontrollers.
  5. Uploading .hex files to various atmega parts or microcontrollers.
  6. Supports many programmers:
    1. AVR-ISP (avrisp)
    2. Atmel STK500 Version 1.x firmware (stk500v1)
    3. Arduino (arduino)
    4. USB-ASP (usbasp)
  7. Console area shows results of compilation and uploading.

Known Issues:

  1. Upload fails with message permission denied: AVR4L requires super user permissions to upload sketches, you can either:

    1. sudo avr4l from a terminal

    2. or add your user to the dialout group, most programmers are listed in this group:

      sudo adduser YOUR_USER dialout

      note: replace YOUR_USER with your linux user

  2. Upload fails with message sudo no tty present and no askpass program specified: AVR4L requires super user permissions to upload sketches, but has not been run as root (sudo), so when it tries to issue a command with sudo, there is no way for it to get the root password, so you can either:

    1. sudo avr4l from a terminal

    2. or prevent sudo commands from requesting passwords:

      in a terminal type:

      sudo visudo

      and add the following to the end of the file:

      YOUR_USER ALL = NOPASSWD : ALL

      note: replace YOUR_USER with your linux user

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].