X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fsnekboard%2Fao_pins.h;fp=src%2Fsnekboard%2Fao_pins.h;h=4f3cba808c5d7ccdd6e660bb28dd0e7b5f119068;hb=c869985188ce9d28c332e449b36c4c88077cd587;hp=0000000000000000000000000000000000000000;hpb=5e7e4303f161e38ac2d84110dccafc67b3aa7fc8;p=fw%2Faltos diff --git a/src/snekboard/ao_pins.h b/src/snekboard/ao_pins.h new file mode 100644 index 00000000..4f3cba80 --- /dev/null +++ b/src/snekboard/ao_pins.h @@ -0,0 +1,43 @@ +/* + * Copyright © 2022 Keith Packard + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ + +#ifndef _AO_PINS_H_ +#define _AO_PINS_H_ + +#define LED_0_PORT (&samd21_port_a) +#define LED_0_PIN 2 + +#define LED_BLUE (1 << 0) + +#define AO_LED_PANIC LED_BLUE + +#define HAS_BEEP 0 + +#define HAS_USB 1 + +#define HAS_LED 1 + +#define AO_XOSC 1 +#define AO_XOSC_FREQ 16000000 +#define AO_XOSC_DIV 256 +#define AO_XOSC_MUL 768 + +#define AO_AHB_PRESCALER 1 +#define AO_APBA_PRESCALER 1 + +#endif /* _AO_PINS_H_ */