2011-05-20 22:01:53 +00:00
|
|
|
#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:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_LED1 1,7
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_LED2 1,6
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_LED3 1,11
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Infrared
|
2011-06-12 20:54:41 +00:00
|
|
|
//#define RB_IROUT 1,5
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-06-12 20:54:41 +00:00
|
|
|
//#define RB_IRIN 1,8
|
|
|
|
//#define RB_IRIN_IO IOCON_PIO1_8
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Buttons
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_BTN0 0,1
|
2011-05-20 22:01:53 +00:00
|
|
|
#define RB_BTN0_IO IOCON_PIO0_1
|
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_BTN1 2,9
|
2011-05-20 22:01:53 +00:00
|
|
|
#define RB_BTN1_IO IOCON_PIO2_9
|
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_BTN2 2,6
|
2011-05-20 22:01:53 +00:00
|
|
|
#define RB_BTN2_IO IOCON_PIO2_6
|
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_BTN3 3,3
|
2011-05-20 22:01:53 +00:00
|
|
|
#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
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
// LCD
|
2011-06-12 20:54:41 +00:00
|
|
|
#define RB_LCD_BL 1,9
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_LCD_CS 2,1
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_LCD_RST 2,2
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
// I2C
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_I2C_SCL 0,4
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_I2C_SCA 0,5
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
// SPI
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_SPI_MISO 0,8
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_SPI_MOSI 0,9
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-06-12 20:54:41 +00:00
|
|
|
#define RB_SPI_SCK 2,11
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-06-15 08:51:22 +00:00
|
|
|
#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:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_SPI_SS1 2,4
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_SPI_SS2 2,8
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_SPI_SS3 3,2
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_SPI_SS4 3,1
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-06-12 20:54:41 +00:00
|
|
|
#define RB_SPI_SS5 2,10
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Power
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_PWR_VOLT 1,0
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-06-12 20:54:41 +00:00
|
|
|
#define RB_PWR_GOOD 1,8
|
2011-05-20 22:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_PWR_CHRG 2,3
|
2011-05-20 22:01:53 +00:00
|
|
|
|
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
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
// Hackerbus
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_HB0 1,3
|
2011-05-20 22:01:53 +00:00
|
|
|
#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:01:53 +00:00
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_HB2 1,1
|
2011-05-20 22:01:53 +00:00
|
|
|
#define RB_HB2_IO IOCON_PIO1_1
|
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_HB3 0,2
|
2011-05-20 22:01:53 +00:00
|
|
|
#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-05-20 22:01:53 +00:00
|
|
|
|
2011-06-12 20:54:41 +00:00
|
|
|
#define RB_HB5 1,2
|
|
|
|
#define RB_HB5_IO IOCON_PIO1_2
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Misc
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_BUSINT 3,0
|
2011-05-20 22:01:53 +00:00
|
|
|
#define RB_BUSINT_IO IOCON_PIO3_0
|
|
|
|
|
2011-05-20 22:31:58 +00:00
|
|
|
#define RB_USB_VBUS 0,3
|
2011-05-20 22:01:53 +00:00
|
|
|
|
|
|
|
#define RB_EEPROM_ADDR 0xA0
|
|
|
|
|
2011-06-13 21:09:37 +00:00
|
|
|
#define USB_CONNECT 0,6
|
|
|
|
|
2011-05-20 22:01:53 +00:00
|
|
|
void rbInit(void);
|
|
|
|
|
2011-06-13 19:06:09 +00:00
|
|
|
// reinvoke_isp.c
|
|
|
|
void ReinvokeISP(void);
|
|
|
|
void EnableWatchdog(uint32_t ms);
|
2011-06-13 21:53:02 +00:00
|
|
|
void ISPandReset(int delay);
|
2011-06-13 19:06:09 +00:00
|
|
|
|
|
|
|
// delayms.c
|
|
|
|
void delayms(uint32_t ms);
|
|
|
|
|
2011-06-13 21:17:09 +00:00
|
|
|
// voltage.c
|
|
|
|
void VoltageCheck(void);
|
2011-06-13 21:39:21 +00:00
|
|
|
uint32_t GetVoltage(void);
|
2011-06-13 21:17:09 +00:00
|
|
|
|
2011-06-13 21:53:02 +00:00
|
|
|
// 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);
|
|
|
|
|
2011-06-17 15:49:40 +00:00
|
|
|
//uuid.c
|
|
|
|
uint32_t GetUUID32(void);
|
|
|
|
uint16_t GetUUID16(void);
|
|
|
|
|
2011-05-20 22:01:53 +00:00
|
|
|
#endif
|