12345678910111213141516171819202122232425262728293031323334 |
- /*
- * pins.h
- *
- * Pin configuration
- */
- #pragma once
- #define PIN_FPGA_TDI 16
- #define PIN_FPGA_TDO 17
- #define PIN_FPGA_TMS 14
- #define PIN_FPGA_TCK 18
- #define PIN_FPGA_nCE 26
- #define PIN_FPGA_INT 9
- #define PIN_FPGA_CS 10
- #define PIN_FPGA_CLK 12
- #define PIN_FPGA_IO0 11
- #define PIN_FPGA_IO1 13
- #define PIN_LED_0 2
- #define PIN_LED_1 3
- #define PIN_LED_2 4
- #define PIN_USB_PWR_EN 7
- #define PIN_USB_PWR_SINK 8
- /* These are applicable only for the bypass FPGA image */
- #define PIN_BYPASS_READY 9
- #define PIN_BYPASS_BOARD_ID 1
- #define PIN_BYPASS_CS 10
- #define PIN_BYPASS_MOSI 12
- #define PIN_BYPASS_MISO 13
- #define PIN_BYPASS_CLK 11
|