diff options
| author | 2026-04-28 01:08:32 -0500 | |
|---|---|---|
| committer | 2026-04-28 01:08:32 -0500 | |
| commit | 0427272424fb73f9792a11d325f365552656622b (patch) | |
| tree | 15f0de6aed642a81d30b66c28105c4584c2805f2 | |
| parent | fix make fit target (it's still broken) (diff) | |
design change: LED is active-low
| -rw-r--r-- | newnewexi.pld | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/newnewexi.pld b/newnewexi.pld index b5a6d85..d8d9e50 100644 --- a/newnewexi.pld +++ b/newnewexi.pld @@ -13,9 +13,11 @@ Device F1504ISPTQFP44; /* */
/* */
/***********************************************************/
-/* Allowable Target Device */
+/* Allowable Target Device ATF1504ASV */
/***********************************************************/
+/* PROPERTY ATMEL { sleep }; */
+
/** EXI-side pins **/
Pin 37 = EXI_CLK; /* IN: EXI bit clock (act on rising edge) */
@@ -29,12 +31,12 @@ Pin 44 = EXI_INT; /* OUT: EXI interrupt (not used) */ Pin [22..20, 18, 15..12] = [FIFO0..7]; /* I/O: USB data lines */
Pin 11 = !USB_RXF; /* IN: USB data in FIFO? */
Pin 10 = !USB_TXE; /* IN: USB can write? */
-Pin 23 = !USB_RD; /* OUT: USB read request (need RXF TRUE) */
+Pin 23 = !USB_RD; /* OUT: USB read request (need RXF TRUE) */
Pin 25 = USB_WR; /* OUT: USB write request (need TXE TRUE) */
Pin 27 = !USB_PWREN; /* IN: USB bus ready? */
/** Extra pins **/
-Pin 33 = LED; /* OUT: Master-controlled LED */
+Pin 33 = !LED; /* OUT: Master-controlled LED */
/** Declarations and Intermediate Variable Definitions **/
|
