-
Notifications
You must be signed in to change notification settings - Fork 7
Links for AVR, atmega and Swift
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.
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.