├── AT15007.pdf ├── README.md ├── hardware.zip ├── hardware ├── atmega328pb │ └── avr │ │ ├── boards.txt │ │ ├── bootloaders │ │ └── optiboot_m328pb.hex │ │ ├── libraries │ │ ├── SPI │ │ │ ├── examples │ │ │ │ ├── BarometricPressureSensor │ │ │ │ │ └── BarometricPressureSensor.ino │ │ │ │ ├── DigitalPotControl │ │ │ │ │ └── DigitalPotControl.ino │ │ │ │ └── dual_digipot │ │ │ │ │ └── dual_digipot.ino │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── SPI.cpp │ │ │ │ └── SPI.h │ │ ├── SPI1 │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── SPI1.cpp │ │ │ │ └── SPI1.h │ │ ├── Wire │ │ │ ├── examples │ │ │ │ ├── SFRRanger_reader │ │ │ │ │ └── SFRRanger_reader.ino │ │ │ │ ├── digital_potentiometer │ │ │ │ │ └── digital_potentiometer.ino │ │ │ │ ├── dual_digipot │ │ │ │ │ └── dual_digipot.ino │ │ │ │ ├── master_reader │ │ │ │ │ └── master_reader.ino │ │ │ │ ├── master_writer │ │ │ │ │ └── master_writer.ino │ │ │ │ ├── slave_receiver │ │ │ │ │ └── slave_receiver.ino │ │ │ │ └── slave_sender │ │ │ │ │ └── slave_sender.ino │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ │ ├── Wire.cpp │ │ │ │ ├── Wire.h │ │ │ │ └── utility │ │ │ │ ├── twi.c │ │ │ │ └── twi.h │ │ └── Wire1 │ │ │ ├── keywords.txt │ │ │ ├── library.properties │ │ │ └── src │ │ │ ├── Wire1.cpp │ │ │ ├── Wire1.h │ │ │ └── utility │ │ │ ├── twi1.c │ │ │ └── twi1.h │ │ ├── platform.txt │ │ ├── programmers.txt │ │ ├── tools │ │ └── avrdude.conf │ │ └── variants │ │ └── atmega328pb │ │ └── pins_arduino.h └── tools │ └── avr │ ├── avr │ ├── include │ │ └── avr │ │ │ ├── io.h │ │ │ └── iom328pb.h │ └── lib │ │ └── avr5 │ │ ├── crtatmega328pb.o │ │ └── libatmega328pb.a │ └── lib │ └── gcc │ └── avr │ └── 4.9.2 │ └── device-specs │ └── specs-atmega328pb ├── m328pb.zip └── package_m328pb_index.json /AT15007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/AT15007.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/README.md -------------------------------------------------------------------------------- /hardware.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware.zip -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/boards.txt -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/bootloaders/optiboot_m328pb.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/bootloaders/optiboot_m328pb.hex -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI/examples/dual_digipot/dual_digipot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI/examples/dual_digipot/dual_digipot.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI/keywords.txt -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI/library.properties -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI/src/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI/src/SPI.cpp -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI/src/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI/src/SPI.h -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI1/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI1/keywords.txt -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI1/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI1/library.properties -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI1/src/SPI1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI1/src/SPI1.cpp -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/SPI1/src/SPI1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/SPI1/src/SPI1.h -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/examples/dual_digipot/dual_digipot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/examples/dual_digipot/dual_digipot.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/examples/master_reader/master_reader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/examples/master_reader/master_reader.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/examples/master_writer/master_writer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/examples/master_writer/master_writer.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/examples/slave_receiver/slave_receiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/examples/slave_receiver/slave_receiver.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/examples/slave_sender/slave_sender.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/examples/slave_sender/slave_sender.ino -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/keywords.txt -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/library.properties -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/src/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/src/Wire.cpp -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/src/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/src/Wire.h -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/src/utility/twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/src/utility/twi.c -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire/src/utility/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire/src/utility/twi.h -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire1/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire1/keywords.txt -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire1/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire1/library.properties -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire1/src/Wire1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire1/src/Wire1.cpp -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire1/src/Wire1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire1/src/Wire1.h -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire1/src/utility/twi1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire1/src/utility/twi1.c -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/libraries/Wire1/src/utility/twi1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/libraries/Wire1/src/utility/twi1.h -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/platform.txt -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/programmers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/programmers.txt -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/tools/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/tools/avrdude.conf -------------------------------------------------------------------------------- /hardware/atmega328pb/avr/variants/atmega328pb/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/atmega328pb/avr/variants/atmega328pb/pins_arduino.h -------------------------------------------------------------------------------- /hardware/tools/avr/avr/include/avr/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/tools/avr/avr/include/avr/io.h -------------------------------------------------------------------------------- /hardware/tools/avr/avr/include/avr/iom328pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/tools/avr/avr/include/avr/iom328pb.h -------------------------------------------------------------------------------- /hardware/tools/avr/avr/lib/avr5/crtatmega328pb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/tools/avr/avr/lib/avr5/crtatmega328pb.o -------------------------------------------------------------------------------- /hardware/tools/avr/avr/lib/avr5/libatmega328pb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/tools/avr/avr/lib/avr5/libatmega328pb.a -------------------------------------------------------------------------------- /hardware/tools/avr/lib/gcc/avr/4.9.2/device-specs/specs-atmega328pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/hardware/tools/avr/lib/gcc/avr/4.9.2/device-specs/specs-atmega328pb -------------------------------------------------------------------------------- /m328pb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/m328pb.zip -------------------------------------------------------------------------------- /package_m328pb_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watterott/ATmega328PB-Testing/HEAD/package_m328pb_index.json --------------------------------------------------------------------------------