Skip to content

Links for AVR, atmega and Swift

swiftforarduinoadmin edited this page Nov 18, 2020 · 1 revision

AVR / atmega328p

Here is Microchip's documentation page for the atmega328p and similar chips: Microchip Documentation atmega328p

You can find all the detail you want about how the processor works.

AVR Freaks are advanced enthusiasts from the community of AVR developers. Any questions relating to low level AVR have probably been asked and answered on here at some time.

Swift

For many people the best place to start if you're new to Swift is The Swift Book.

The canonical place to reference Swift as a language is the swift.org documentation page. Some of it does not apply with micro Swift (our dialect) but much of the structure will be the same. The lack of Strings, Dictionaries and Classes is probably the biggest departure from the language. That and Array being a reference type in uSwift.

Apple also maintain extensive documentation on their own developer website.