Git Product home page Git Product logo

clang-avr-libc-interrupt-example's Introduction

AVR Clang interrupt handling example

Clang currently uses avr-gcc's runtime libraries when linking AVR executables.

The ISR tables are provided by GCC's AVR CRT files. Projects that target AVR-GCC use the ISR(..) #define macro to define interrupt handlers. This macro hides the implementation details.

Handling exceptions with AVR and Clang

By default, the AVR-GCC runtime libraries are linked when generating ELF executables with AVR/clang.

You can handle interrupts using clang by either

  1. write functions with __attribute__(interrupt). The function names must match those defined in the AVR-GCC CRT assembly and object files.

or

  1. write your own ISR table in assembly and chose the ISR handler symbol names yourself.

This repository is an example of (1).

Slightly more context

GCC defines the ISR table in assembly using weak symbol references. This allows linking to succeed when no ISR handlers are explicitly defined. If you name your AVR-Clang methods with the same names that GCC uses for its ISR tables, the linker will automatically point at your custom ISR handler.

GCC CRT ISR handler names:

  • ADC interrupt handler: __vector_21
  • Catch-all interrupt handler: __vector_default

This example repository was created in response to a question on llvm-dev: https://lists.llvm.org/pipermail/llvm-dev/2020-March/139732.html

clang-avr-libc-interrupt-example's People

Contributors

dylanmckay avatar

Stargazers

 avatar

Watchers

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