mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-09-18 01:42:26 -07:00
switch to setup for Arduino Boards Manager
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
// AquaLEDSource All in One Super Screw Shield
|
||||
// -------------------------------------------
|
||||
// Uncomment the following line if you are using this shield
|
||||
//#define AQUALED_SHIELD 1
|
||||
//
|
||||
// For this shield: RS=82, WR=83, CS=84, RST=85 (Standard for chipKit Max32)
|
||||
//**************************************************************************
|
||||
|
||||
// *** Hardwarespecific defines ***
|
||||
#define cbi(reg, bitmask) (*(reg + 1)) = bitmask
|
||||
#define sbi(reg, bitmask) (*(reg + 2)) = bitmask
|
||||
#define pulse_high(reg, bitmask) sbi(reg, bitmask); cbi(reg, bitmask);
|
||||
#define pulse_low(reg, bitmask) cbi(reg, bitmask); sbi(reg, bitmask);
|
||||
|
||||
#define cport(port, data) port &= data
|
||||
#define sport(port, data) port |= data
|
||||
|
||||
#define swap(type, i, j) {type t = i; i = j; j = t;}
|
||||
|
||||
#define fontbyte(x) cfont.font[x]
|
||||
|
||||
#define PROGMEM
|
||||
#define regtype volatile uint32_t
|
||||
#define regsize uint16_t
|
||||
#define bitmapdatatype unsigned short*
|
||||
|
Reference in New Issue
Block a user