lib/denko_cli/targets.rb in denko-0.13.1 vs lib/denko_cli/targets.rb in denko-0.13.2
- old
+ new
@@ -9,17 +9,20 @@
# Specific features for the old mega168 chips.
mega168: [:core, :one_wire, :tone, :i2c, :spi, :servo],
# Other ATmega chips do everything.
- # Add bit bang serial for 328p / UNO since ith as no extra hardware UART.
+ # Add bit bang serial for 328p / UNO since it has no extra hardware UART.
mega: STANDARD_PACKAGES + [:uart_bb],
- # No tone or IR support on SAM3X / Due.
- sam3x: STANDARD_PACKAGES - [:tone, :ir_out],
+ # No tone, infrared or EEPROM on SAM3X / Due.
+ sam3x: STANDARD_PACKAGES - [:tone, :ir_out, :eeprom],
- # SAMD includes all standard packages.
- samd: STANDARD_PACKAGES,
+ # No EEPROM on SAMD / Zero.
+ samd: STANDARD_PACKAGES - [:eeprom],
+
+ # No IR out and WS2812 on the UNO R4. WS2812 compiles but doesn't work.
+ ra4m1: STANDARD_PACKAGES - [:ir_out, :led_array],
# ESP8266 + ESP32 use a different IR library.
esp8266: STANDARD_PACKAGES - [:ir_out] + [:ir_out_esp],
esp32: STANDARD_PACKAGES - [:ir_out] + [:ir_out_esp],