| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /* ========================================================================
- * [PROJECT] SIR
- * [MODULE] PortIO
- * [TITLE] Port IO header file
- * [FILE] portio.h
- * [VSN] 2.0
- * [CREATED] 030414
- * [LASTCHNGD] 072405
- * [COPYRIGHT] Copyright (C) STREAMIT BV 2010
- * [PURPOSE] support for low-level pinning
- * ======================================================================== */
- /*-------------------------------------------------------------------------*/
- /* global defines */
- /*-------------------------------------------------------------------------*/
- // ********* PORT B ************
- // 7 6 5 4 3 2 1 0
- // ÚÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄ¿
- // ³RES³CEN³CSC³XCS³SO ³ SI³CLK³CWP³
- // ÀÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÙ
- #define MMC_ENABLE 5 // active LOW!
- #define VS_ENABLE 6 // note that logic has changed since SIR80 V1
- #define MMCVS_OUT_DDR DDRB // data-direction of MMC/VS functions
- #define MMCVS_OUT_WRITE PORTB // write PORTB (B as output)
- // ********* PORT D ************
- // 7 6 5 4 3 2 1 0
- // ÚÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄ¿
- // ³LD7³LD6³LD5³LD4³KC2³KC3³ EN³ - ³
- // ÀÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÙ
- #define LCD_EN 2 // LCD chip Enable (or: chip select)
- #define LCD_DATA_4 4
- #define LCD_DATA_5 5
- #define LCD_DATA_6 6
- #define LCD_DATA_7 7
- #define LCD_DATA_DDR DDRD // data-direction of LCD-data port
- #define LCD_DATA_PORT PORTD // port to write LCD-data
- #define LCD_IN_PORT PIND // port to read LCD-data
- #define LCD_EN_DDR DDRE // data-direction of LCD-control port
- #define LCD_EN_PORT PORTE // data of LCD-control port
- #define KB_OUT_DDR_B DDRD // data-direction of KB_OUT (second part)
- #define KB_OUT_WRITE_B PORTD // write PORTD (D as output)
- // ********* PORT E ************
- // 7 6 5 4 3 2 1 0
- // ÚÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄ¿
- // ³CSF³REQ³ETH³IR ³BL ³ - ³TXD³RXD³
- // ÀÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÙ
- #define FLASH_ENABLE 7 // active LOW!
- #define LCD_BL_BIT 3 // Backlight LCD
- #define IR_PIN 4 // Infrared receive PIN
- #define FLASH_OUT_WRITE PORTE // write PORTE for Flash CS
- #define LCD_BL_PORT PORTE
- // ********* PORT F ************
- // 7 6 5 4 3 2 1 0
- // ÚÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄ¿
- // ³KR3³KR2³KR1³KR0³LED³LRS³LRW³CRD³ // note TDI ( JTAG-pin) is shared with KR3
- // ÀÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÙ
- #define MMC_CDETECT 0 // signal card inserted/removed
- #define LCD_RW 1 // R/W LCD
- #define LCD_RS 2 // Register select LCD
- #define LED_PIN 3 // LED
- #define LCD_RS_DDR DDRF // data-direction of LCD-control port
- #define LCD_RS_PORT PORTF // data of LCD-control port
- #define LCD_RW_DDR DDRF // data-direction of LCD-control port
- #define LCD_RW_PORT PORTF // data of LCD-control port
- #define LED_OUT_DDR DDRF // data-direction of LED control pin
- #define LED_OUT_WRITE PORTF // write PORTF
- #define KB_IN_DDR DDRF // data-direction of KB_IN
- #define KB_IN_WRITE PORTF // write PORTF (F as output)
- #define KB_IN_READ PINF // read PINF (F as input)
- #define MMC_IN_DDR DDRF // data-direction of MMC_CDETECT
- #define MMC_IN_READ PINF // read PINF (F as input)
- // 7 6 5 4 3 2 1 0
- // ÚÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄÂÄÄÄ¿
- // ³ - ³ - ³ - ³KC1³KC0³ - ³ - ³ - ³
- // ÀÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÁÄÄÄÙ
- #define KB_OUT_DDR_A DDRG // data-direction of KB_OUT (first part)
- #define KB_OUT_WRITE_A PORTG // write PORTG (G as output)
- #define JTAG_REG MCUCR
- #define OVERFLOW_SIGNAL sig_OVERFLOW0
- #define init_8_bit_timer() \
- { \
- TCCR0B |= (1<<CS02); \
- TIFR0 |= 1<<TOV0; \
- TIMSK0 |= 1<<TOIE0; \
- }
- #define disable_8_bit_timer_ovfl_int() \
- { \
- TIMSK0 &= ~(1<<TOIE0); \
- }
- // ********* PORT G ************
- /*-------------------------------------------------------------------------*/
- /* export global routines (interface) */
- /*-------------------------------------------------------------------------*/
- /* ÍÍÍÍ End Of File ÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ */
|