-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ATMega328PB support fails to compile #461
Comments
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 14, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries - Fix for reading the 'Serial Number' from ATmega328P
kholia
added a commit
to kholia/simavr
that referenced
this issue
Jan 16, 2022
- Fix for buserror#461 Borrowed from https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/ - Add easy to understand usage instructions - Add `ArduinoUniqueID` example and binaries - Fix for reading the 'Serial Number' from ATmega328P
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When building simavr, at the start it informs about not being able to give ATMega328PB support.
Inspecting the invocation and compiler output closer, it's missing the I/O header file.
which seems to be supplied by Atmel in their device header pack. Even in recent AVR-GCC versions, this file is missing (https://stuvel.eu/post/2021-04-27-atmega328pb-on-gcc/), but can be added.
When I follow above instructions to download the device pack and copy the appropriate files into my AVR-GCC toolchain as well as in the SimAVR directory
After
make clean
andmake build-simavr
, that now givessimavr
ATMega328PB support.The issue would be fixed by PR #353.
The text was updated successfully, but these errors were encountered: