Files
-
hardware / bubblegum / bubblegum.brd
-
hardware / bubblegum / bubblegum.sch
-
hardware / hackrf-one / baseband.kicad_sch
-
hardware / hackrf-one / clock.kicad_sch
-
hardware / hackrf-one / frontend.kicad_sch
-
hardware / hackrf-one / hackrf-one.kicad_pcb
-
hardware / hackrf-one / hackrf-one.kicad_sch
-
hardware / hackrf-one / mcu.kicad_sch
-
hardware / jawbreaker / baseband.sch
-
hardware / jawbreaker / frontend.sch
-
hardware / jawbreaker / jawbreaker.brd
-
hardware / jawbreaker / jawbreaker.sch
-
hardware / jawbreaker / mcu.sch
-
hardware / jellybean / jellybean.brd
-
hardware / jellybean / jellybean.sch
-
hardware / lemondrop / lemondrop.brd
-
hardware / lemondrop / lemondrop.sch
-
hardware / licorice / licorice.brd
-
hardware / licorice / licorice.sch
-
hardware / LNA915 / LNA915.kicad_pcb
-
hardware / LNA915 / LNA915.sch
-
hardware / lollipop / lollipop.brd
-
hardware / lollipop / lollipop.sch
-
hardware / marzipan / baseband.sch
-
hardware / marzipan / frontend.sch
-
hardware / marzipan / marzipan.kicad_pcb
-
hardware / marzipan / marzipan.sch
-
hardware / marzipan / mcu.sch
-
hardware / neapolitan / baseband.sch
-
hardware / neapolitan / frontend.sch
-
hardware / neapolitan / mcu.sch
-
hardware / neapolitan / neapolitan.kicad_pcb
-
hardware / neapolitan / neapolitan.sch
-
hardware / operacake / operacake.kicad_pcb
-
hardware / operacake / operacake.sch
Last update 2 years 1 month
by
Gianpaolo Macario
Filesfirmwarecommonxapp058 | |
---|---|
.. | |
README | |
lenval.c | |
lenval.h | |
micro.c | |
micro.h | |
ports.c | |
ports.h |
ports.h/*******************************************************/ /* file: ports.h */ /* abstract: This file contains extern declarations */ /* for providing stimulus to the JTAG ports.*/ /*******************************************************/ #ifndef ports_dot_h #define ports_dot_h #include "cpld_jtag.h" /* these constants are used to send the appropriate ports to setPort */ /* they should be enumerated types, but some of the microcontroller */ /* compilers don't like enumerated types */ #define TCK (short) 0 #define TMS (short) 1 #define TDI (short) 2 /* set the port "p" (TCK, TMS, or TDI) to val (0 or 1) */ extern void setPort(jtag_gpio_t* const gpio, short p, short val); /* read the TDO bit and store it in val */ extern unsigned char readTDOBit(jtag_gpio_t* const gpio); /* make clock go down->up->down*/ extern void pulseClock(jtag_gpio_t* const gpio); /* read the next byte of data from the xsvf file */ extern void readByte(unsigned char *data); extern void waitTime(jtag_gpio_t* const gpio, long microsec); #endif