Coder Social home page Coder Social logo

cmake-avr's Introduction

cmake-avr

Supported system

  • Linux

It is not tested on Windows and Mac OS.

Features

  • easy to use: install and go
  • disassemble hex file
  • get fuse
  • get status
  • get oscillator calibration
  • set oscillator calibration
  • set fuse
  • upload hex
  • upload eeprom

Install

git clone https://github.com/e154/cmake-avr.git
cd cmake-avr
cmake -S . -B build/
# cmake -S . -B build/ -D BUILD_EXAMPLE=ON
sudo cmake --build build/ --target install

Usage

cmake -S . -B build/
cmake --build build/
# or cd build/; make

cmake --build build/ --target <target>
# or: cd build/; make <target>

Type make help or cmake --build build --target help for a list of all targets.

On Linux systems targets, which interacts with usb port, requires sudo.

CMake integration

cmake_minimum_required(VERSION 3.0.0)

project(my-avr-project)

set(CMAKE_BUILD_TYPE Release)

set(AVR_MCU_SPEED 8000000UL)
set(AVR_MCU atmega8) # default value
set(AVR_H_FUSE 0xd9)
set(AVR_L_FUSE 0xc4)

# this information used by uploader
set(AVR_UPLOADTOOL avrdude)             # default value
set(AVR_PROGRAMMER avrispmkII)          # default value
set(AVR_UPLOADTOOL_PORT usb)            # default

set(AVR_UPLOADTOOL_OPTIONS "") # you can pass additional options
set(AVR_COMPILE_OPTIONS "") # additional compile options

find_package(avr-gcc REQUIRED)

set(SOURCES main.c)
avr_add_executable(cmake_avr ${SOURCES})

LICENSE

cmake-avr is licensed under the MIT License (MIT)

cmake-avr's People

Contributors

e154 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.