crashtest-r0ket/basic/basic.h

143 lines
2.1 KiB
C
Raw Normal View History

#ifndef __BASIC_H_
#define __BASIC_H_
#include "core/gpio/gpio.h"
#include "core/adc/adc.h"
// LED
2011-05-20 22:31:58 +00:00
#define RB_LED0 0,11
2011-05-20 22:31:58 +00:00
#define RB_LED1 1,7
2011-05-20 22:31:58 +00:00
#define RB_LED2 1,6
2011-05-20 22:31:58 +00:00
#define RB_LED3 1,11
// Infrared
2011-06-12 20:54:41 +00:00
//#define RB_IROUT 1,5
2011-06-12 20:54:41 +00:00
//#define RB_IRIN 1,8
//#define RB_IRIN_IO IOCON_PIO1_8
// Buttons
2011-05-20 22:31:58 +00:00
#define RB_BTN0 0,1
#define RB_BTN0_IO IOCON_PIO0_1
2011-05-20 22:31:58 +00:00
#define RB_BTN1 2,9
#define RB_BTN1_IO IOCON_PIO2_9
2011-05-20 22:31:58 +00:00
#define RB_BTN2 2,6
#define RB_BTN2_IO IOCON_PIO2_6
2011-05-20 22:31:58 +00:00
#define RB_BTN3 3,3
#define RB_BTN3_IO IOCON_PIO3_3
2011-06-12 20:54:41 +00:00
#define RB_BTN4 2,7
#define RB_BTN4_IO IOCON_PIO2_7
// LCD
2011-06-12 20:54:41 +00:00
#define RB_LCD_BL 1,9
2011-05-20 22:31:58 +00:00
#define RB_LCD_CS 2,1
2011-05-20 22:31:58 +00:00
#define RB_LCD_RST 2,2
// I2C
2011-05-20 22:31:58 +00:00
#define RB_I2C_SCL 0,4
2011-05-20 22:31:58 +00:00
#define RB_I2C_SCA 0,5
// SPI
2011-05-20 22:31:58 +00:00
#define RB_SPI_MISO 0,8
2011-05-20 22:31:58 +00:00
#define RB_SPI_MOSI 0,9
2011-06-12 20:54:41 +00:00
#define RB_SPI_SCK 2,11
#define RB_SPI_CS_DF 2,0
2011-05-20 22:31:58 +00:00
#define RB_SPI_SS0 2,5
2011-05-20 22:31:58 +00:00
#define RB_SPI_SS1 2,4
2011-05-20 22:31:58 +00:00
#define RB_SPI_SS2 2,8
2011-05-20 22:31:58 +00:00
#define RB_SPI_SS3 3,2
2011-05-20 22:31:58 +00:00
#define RB_SPI_SS4 3,1
2011-06-12 20:54:41 +00:00
#define RB_SPI_SS5 2,10
// Power
2011-05-20 22:31:58 +00:00
#define RB_PWR_VOLT 1,0
2011-06-12 20:54:41 +00:00
#define RB_PWR_GOOD 1,8
2011-05-20 22:31:58 +00:00
#define RB_PWR_CHRG 2,3
2011-06-12 20:54:41 +00:00
#define RB_PWR_LCDBL 0,0
#define RB_PWR_LCDBL_IO IOCON_nRESET_PIO0_0
#define RB_PWR_LCDBL_IO_FUNC_MASK IOCON_nRESET_PIO0_0_FUNC_MASK
#define RB_PWR_LCDBL_IO_FUNC_GPIO IOCON_nRESET_PIO0_0_FUNC_GPIO
// Hackerbus
2011-05-20 22:31:58 +00:00
#define RB_HB0 1,3
#define RB_HB0_IO IOCON_PIO1_3
2011-06-12 20:54:41 +00:00
#define RB_HB1 0,10
#define RB_HB1_IO IOCON_PIO0_10
2011-05-20 22:31:58 +00:00
#define RB_HB2 1,1
#define RB_HB2_IO IOCON_PIO1_1
2011-05-20 22:31:58 +00:00
#define RB_HB3 0,2
#define RB_HB3_IO IOCON_PIO0_2
2011-06-12 20:54:41 +00:00
#define RB_HB4 1,4
#define RB_HB4_IO IOCON_PIO1_4
2011-06-12 20:54:41 +00:00
#define RB_HB5 1,2
#define RB_HB5_IO IOCON_PIO1_2
// Misc
2011-05-20 22:31:58 +00:00
#define RB_BUSINT 3,0
#define RB_BUSINT_IO IOCON_PIO3_0
2011-05-20 22:31:58 +00:00
#define RB_USB_VBUS 0,3
#define RB_EEPROM_ADDR 0xA0
#define USB_CONNECT 0,6
void rbInit(void);
// reinvoke_isp.c
void ReinvokeISP(void);
void EnableWatchdog(uint32_t ms);
void ISPandReset(int delay);
// delayms.c
void delayms(uint32_t ms);
// voltage.c
void VoltageCheck(void);
2011-06-13 21:39:21 +00:00
uint32_t GetVoltage(void);
// keyin.c
#define BTN_NONE 0
#define BTN_UP (1<<0)
#define BTN_DOWN (1<<1)
#define BTN_LEFT (1<<2)
#define BTN_RIGHT (1<<3)
#define BTN_ENTER (1<<4)
uint8_t getInput(void);
#endif