├── .gitignore ├── Makefile ├── README.md ├── RemoteSystemsTempFiles └── .project ├── afsktx ├── ax25.c ├── ax25.h ├── ax5043.c ├── ax5043.h ├── main.c ├── status.h └── utils.h ├── ax5043 ├── .cproject ├── .gitignore ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.managedbuilder.core.prefs ├── Doxyfile ├── README.md ├── ax5043support │ ├── ax5043init.c │ ├── ax5043init.h │ ├── ax5043rx.c │ ├── ax5043rx.h │ ├── ax5043tx.c │ └── ax5043tx.h ├── axradio │ ├── axradioinit.c │ ├── axradioinit.h │ ├── axradioinit_p.h │ ├── axradiomode.c │ ├── axradiomode.h │ ├── axradiomode_p.h │ ├── axradiorx.c │ ├── axradiorx.h │ ├── axradiorx_p.h │ ├── axradiotx.c │ ├── axradiotx.h │ └── axradiotx_p.h ├── crc │ ├── crc.c │ └── crc.h ├── doc │ └── TransceiverFramework.pdf ├── generated │ ├── config.c │ ├── config.h │ ├── configcommon.c │ ├── configrx.c │ ├── configrx.h │ ├── configtx.c │ └── configtx.h ├── images │ └── logo55x55.png └── spi │ ├── ax5043spi.c │ ├── ax5043spi.h │ ├── ax5043spi_p.h │ ├── dummyspi.c │ └── dummyspi.h ├── chat ├── .cproject ├── .gitignore ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.managedbuilder.core.prefs └── chat_main.c ├── gpl.txt ├── init ├── .cproject ├── .gitignore ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.managedbuilder.core.prefs └── init_main.c ├── kicad ├── .gitignore ├── README.md ├── v1.3 │ ├── PiHatAx5043-cache.lib │ ├── PiHatAx5043-rescue.lib │ ├── PiHatAx5043.kicad_pcb │ ├── PiHatAx5043.net │ ├── PiHatAx5043.pro │ ├── PiHatAx5043.sch │ ├── PiHatAx5043.xml │ ├── gerber │ │ ├── PiHatAx5043-B.Cu.gbl │ │ ├── PiHatAx5043-B.Mask.gbs │ │ ├── PiHatAx5043-B.SilkS.gbo │ │ ├── PiHatAx5043-F.Cu.gtl │ │ ├── PiHatAx5043-F.Mask.gts │ │ ├── PiHatAx5043-F.Paste.gtp │ │ ├── PiHatAx5043-F.SilkS.gto │ │ ├── PiHatAx5043-In1.Cu.g2 │ │ ├── PiHatAx5043-In2.Cu.g3 │ │ ├── PiHatAx5043-NPTH.drl │ │ └── PiHatAx5043.drl │ ├── meta │ │ ├── PiHatAx5043-F.Paste.gbr │ │ └── PiHatAx5043-F.Paste.svg │ └── sym-lib-table ├── v1_3_5 │ ├── PiHatAx5043-cache.lib │ ├── PiHatAx5043.kicad_pcb │ ├── PiHatAx5043.net │ ├── PiHatAx5043.pro │ ├── PiHatAx5043.sch │ ├── PiHatAx5043.xml │ ├── fp-lib-table │ ├── gerber │ │ ├── PiHatAx5043-B.Cu.gbl │ │ ├── PiHatAx5043-B.Mask.gbs │ │ ├── PiHatAx5043-B.SilkS.gbo │ │ ├── PiHatAx5043-Edge.Cuts.gm1 │ │ ├── PiHatAx5043-F.Cu.gtl │ │ ├── PiHatAx5043-F.Mask.gts │ │ ├── PiHatAx5043-F.Paste.gtp │ │ ├── PiHatAx5043-F.SilkS.gto │ │ ├── PiHatAx5043-In1.Cu.g2 │ │ ├── PiHatAx5043-In2.Cu.g3 │ │ └── PiHatAx5043.drl │ ├── library │ │ ├── .gitignore │ │ ├── AX5043-1-TA05.bck │ │ ├── AX5043-1-TA05.dcm │ │ ├── AX5043-1-TA05.lib │ │ ├── AX5243-1-TA05.dcm │ │ ├── AX5243-1-TA05.lib │ │ ├── AX5243-1-TA05.mod │ │ ├── ECX42.pretty │ │ │ └── Crystal_SMD_ECX42-4pin_4.0x2.5mm.kicad_mod │ │ ├── ax5043.pretty │ │ │ └── QFN50P500X500X95-29N.kicad_mod │ │ ├── max31725.bck │ │ ├── max31725.dcm │ │ └── max31725.lib │ ├── meta │ │ ├── PiHatAx5043-F.Paste.gbr │ │ └── PiHatAx5043-F.Paste.svg │ └── sym-lib-table └── v2_0 │ ├── PiHatAx5043-cache.lib │ ├── PiHatAx5043.csv │ ├── PiHatAx5043.kicad_pcb │ ├── PiHatAx5043.net │ ├── PiHatAx5043.pro │ ├── PiHatAx5043.sch │ ├── PiHatAx5043.xml │ ├── fp-lib-table │ ├── gerber │ ├── PiHatAx5043-B.Cu.gbl │ ├── PiHatAx5043-B.Mask.gbs │ ├── PiHatAx5043-B.SilkS.gbo │ ├── PiHatAx5043-Edge.Cuts.gm1 │ ├── PiHatAx5043-F.Cu.gtl │ ├── PiHatAx5043-F.Mask.gts │ ├── PiHatAx5043-F.Paste.gtp │ ├── PiHatAx5043-F.SilkS.gto │ ├── PiHatAx5043-In1.Cu.g2 │ ├── PiHatAx5043-In2.Cu.g3 │ └── PiHatAx5043.drl │ ├── library │ ├── .gitignore │ ├── AX5043-1-TA05.dcm │ ├── AX5043-1-TA05.lib │ ├── ECX42.pretty │ │ └── Crystal_SMD_ECX42-4pin_4.0x2.5mm.kicad_mod │ ├── MAX-M8.lib │ ├── MAX-M8.mod │ ├── ax5043.pretty │ │ └── QFN50P500X500X95-29N.kicad_mod │ ├── max31725.dcm │ ├── max31725.lib │ ├── nxp.dcm │ └── nxp.lib │ └── sym-lib-table ├── libs ├── libmf │ ├── buildiar │ │ ├── Makefile │ │ └── genrregs.pl │ ├── buildkeil │ │ └── Makefile │ ├── buildkeilx │ │ └── Makefile │ ├── buildsdcc │ │ └── Makefile │ ├── builtsource │ │ ├── ax5031comminit.c │ │ ├── ax5031commslpexit.c │ │ ├── ax5031deepsleep.c │ │ ├── ax5031rdfifo.c │ │ ├── ax5031reset.c │ │ ├── ax5031wrfifo.c │ │ ├── ax5042comminit.c │ │ ├── ax5042commslpexit.c │ │ ├── ax5042deepsleep.c │ │ ├── ax5042rdfifo.c │ │ ├── ax5042reset.c │ │ ├── ax5042wrfifo.c │ │ ├── ax5043comminit.c │ │ ├── ax5043commslpexit.c │ │ ├── ax5043deepsleep.c │ │ ├── ax5043rdfifo.c │ │ ├── ax5043reset.c │ │ ├── ax5043wrfifo.c │ │ ├── ax5051comminit.c │ │ ├── ax5051commslpexit.c │ │ ├── ax5051deepsleep.c │ │ ├── ax5051rdfifo.c │ │ ├── ax5051reset.c │ │ ├── ax5051wrfifo.c │ │ ├── crc16ansi.c │ │ ├── crc16ansib.c │ │ ├── crc16ansimsb.c │ │ ├── crc16ansimsbb.c │ │ ├── crc16dnp.c │ │ ├── crc16dnpb.c │ │ ├── crc16dnpmsb.c │ │ ├── crc16dnpmsbb.c │ │ ├── crc32ansi.c │ │ ├── crc32ansib.c │ │ ├── crc32ansimsb.c │ │ ├── crc32ansimsbb.c │ │ ├── crc8ccittb.c │ │ ├── crc8ccittmsbb.c │ │ ├── crc8onewireb.c │ │ ├── crc8onewiremsbb.c │ │ ├── crc8tccitt.c │ │ ├── crc8tccittmsb.c │ │ ├── crc8tonewire.c │ │ ├── crc8tonewiremsb.c │ │ ├── crcccitt.c │ │ ├── crcccittb.c │ │ ├── crcccittmsb.c │ │ ├── crcccittmsbb.c │ │ ├── dbglnkrx.c │ │ ├── dbglnkrxbuf.c │ │ ├── dbglnktx.c │ │ ├── dbglnktxbuf.c │ │ ├── dbglnkwrhex16.c │ │ ├── dbglnkwrhex32.c │ │ ├── dbglnkwrhexu16.c │ │ ├── dbglnkwrhexu32.c │ │ ├── dbglnkwrnum16.c │ │ ├── dbglnkwrnum32.c │ │ ├── dbglnkwrstr.c │ │ ├── dbglnkwru16.c │ │ ├── dbglnkwru32.c │ │ ├── lcduwrhex16.c │ │ ├── lcduwrhex32.c │ │ ├── lcduwrnum16.c │ │ ├── lcduwrnum32.c │ │ ├── uart0init.c │ │ ├── uart0rx.c │ │ ├── uart0rxbuf.c │ │ ├── uart0stop.c │ │ ├── uart0tx.c │ │ ├── uart0txbuf.c │ │ ├── uart0wrhex16.c │ │ ├── uart0wrhex32.c │ │ ├── uart0wrhexu16.c │ │ ├── uart0wrhexu32.c │ │ ├── uart0wrnum16.c │ │ ├── uart0wrnum32.c │ │ ├── uart0wrstr.c │ │ ├── uart0wru16.c │ │ ├── uart0wru32.c │ │ ├── uart1init.c │ │ ├── uart1rx.c │ │ ├── uart1rxbuf.c │ │ ├── uart1stop.c │ │ ├── uart1tx.c │ │ ├── uart1txbuf.c │ │ ├── uart1wrhex16.c │ │ ├── uart1wrhex32.c │ │ ├── uart1wrhexu16.c │ │ ├── uart1wrhexu32.c │ │ ├── uart1wrnum16.c │ │ ├── uart1wrnum32.c │ │ ├── uart1wrstr.c │ │ ├── uart1wru16.c │ │ ├── uart1wru32.c │ │ ├── uarttimer0.c │ │ ├── uarttimer1.c │ │ └── uarttimer2.c │ ├── doc │ │ └── LibMF.pdf │ ├── iar │ │ ├── libmf-pli-nlpc-1e16x01.r51 │ │ ├── libmf-pli-nlpd-1e16x01.r51 │ │ ├── libmf-pli-nlxc-1e16x01.r51 │ │ ├── libmf-pli-nlxd-1e16x01.r51 │ │ ├── libmf-pli-nsdc-1e16x01.r51 │ │ ├── libmf-pli-nsdd-1e16x01.r51 │ │ ├── libmf-pli-nsic-1e16x01.r51 │ │ ├── libmf-pli-nsid-1e16x01.r51 │ │ ├── libmf-pli-nsoc-1e16x01.r51 │ │ ├── libmf-pli-nsod-1e16x01.r51 │ │ ├── libmf-pli-ntdc-1e16x01.r51 │ │ ├── libmf-pli-ntdd-1e16x01.r51 │ │ ├── libmf-pli-ntic-1e16x01.r51 │ │ ├── libmf-pli-ntid-1e16x01.r51 │ │ ├── libmf-pli-ntoc-1e16x01.r51 │ │ ├── libmf-pli-ntod-1e16x01.r51 │ │ ├── libmf.r51 │ │ └── libmflarge.r51 │ ├── include │ │ ├── ax8052.h │ │ ├── ax8052f131.h │ │ ├── ax8052f142.h │ │ ├── ax8052f143.h │ │ ├── ax8052f151.h │ │ ├── ax8052regaddr.h │ │ ├── axcompiler.h │ │ ├── libmf.h │ │ ├── libmfadc.h │ │ ├── libmfbch.h │ │ ├── libmfcalsector.h │ │ ├── libmfcrc.h │ │ ├── libmfdbglink.h │ │ ├── libmfflash.h │ │ ├── libmflcd.h │ │ ├── libmfosc.h │ │ ├── libmfradio.h │ │ ├── libmftypes.h │ │ ├── libmfuart.h │ │ ├── libmfuart0.h │ │ ├── libmfuart1.h │ │ └── libmfwtimer.h │ ├── keil │ │ ├── libmf.lib │ │ └── libmflarge.lib │ ├── keil2 │ │ ├── libmf.lib │ │ └── libmflarge.lib │ ├── sdcc │ │ ├── libmf.lib │ │ └── libmflarge.lib │ └── source │ │ ├── adccal.c │ │ ├── adccalg.c │ │ ├── adccalt.c │ │ ├── adcseoffs00.c │ │ ├── adcseoffs01.c │ │ ├── adcseoffs10.c │ │ ├── adctemp.c │ │ ├── adcuncal.c │ │ ├── ax5031rclkdis.c │ │ ├── ax5031rclkena.c │ │ ├── ax5031regs.c │ │ ├── ax5042rclkdis.c │ │ ├── ax5042rclkena.c │ │ ├── ax5042regs.c │ │ ├── ax5043rclkdis.c │ │ ├── ax5043rclkena.c │ │ ├── ax5043regs.c │ │ ├── ax5051rclkdis.c │ │ ├── ax5051rclkena.c │ │ ├── ax5051regs.c │ │ ├── ax8052.h │ │ ├── ax8052f131.h │ │ ├── ax8052f142.h │ │ ├── ax8052f143.h │ │ ├── ax8052f151.h │ │ ├── ax8052regaddr.h │ │ ├── ax8052regs.c │ │ ├── axcompiler.h │ │ ├── bch3121dec.c │ │ ├── bch3121decp.c │ │ ├── bch3121enc.c │ │ ├── bch3121encp.c │ │ ├── bch3121stab.c │ │ ├── bch3121syn.c │ │ ├── chksgnlim16.c │ │ ├── chksgnlim32.c │ │ ├── crc16.c │ │ ├── crc16b.c │ │ ├── crc16dnpmsbtable.c │ │ ├── crc16dnptable.c │ │ ├── crc16msb.c │ │ ├── crc16msbtable.c │ │ ├── crc16table.c │ │ ├── crc32.c │ │ ├── crc32b.c │ │ ├── crc32msb.c │ │ ├── crc32msbtable.c │ │ ├── crc32table.c │ │ ├── crc8.c │ │ ├── crc8b.c │ │ ├── crc8ccitt.c │ │ ├── crc8ccittmsbtable.c │ │ ├── crc8ccitttable.c │ │ ├── crc8msb.c │ │ ├── crc8onewire.c │ │ ├── crc8onewiremsbtable.c │ │ ├── crc8onewiretable.c │ │ ├── crcccittmsbtable.c │ │ ├── crcccitttable.c │ │ ├── dbglink.c │ │ ├── deepsleep.c │ │ ├── delay.c │ │ ├── flashcal.c │ │ ├── flashcsec.c │ │ ├── flashlock.c │ │ ├── flashpgerase.c │ │ ├── flashread.c │ │ ├── flashunlock.c │ │ ├── flashwait.c │ │ ├── flashwrite.c │ │ ├── fmemcpy.c │ │ ├── fmemcpyiar.s51 │ │ ├── fmemset.c │ │ ├── fmemsetiar.s51 │ │ ├── getpspiar.s51 │ │ ├── getxspiar.s51 │ │ ├── graydec8.c │ │ ├── grayenc8.c │ │ ├── hweight16.c │ │ ├── hweight32.c │ │ ├── hweight8.c │ │ ├── iorx.c │ │ ├── iorxbuf.c │ │ ├── iotx.c │ │ ├── iotxbuf.c │ │ ├── iowrhex16.c │ │ ├── iowrhex32.c │ │ ├── iowrhexu16.c │ │ ├── iowrhexu32.c │ │ ├── iowrnum16.c │ │ ├── iowrnum32.c │ │ ├── iowrstr.c │ │ ├── iowru16.c │ │ ├── iowru32.c │ │ ├── lcdclear.c │ │ ├── lcdclrdisp.c │ │ ├── lcdinit.c │ │ ├── lcdsetpos.c │ │ ├── lcdwrhexu16.c │ │ ├── lcdwrhexu32.c │ │ ├── lcdwrstr.c │ │ ├── lcdwru16.c │ │ ├── lcdwru32.c │ │ ├── libmf.h │ │ ├── libmfadc.h │ │ ├── libmfbch.h │ │ ├── libmfcalsector.h │ │ ├── libmfcrc.h │ │ ├── libmfdbglink.h │ │ ├── libmfflash.h │ │ ├── libmflcd.h │ │ ├── libmfosc.h │ │ ├── libmfradio.h │ │ ├── libmftypes.h │ │ ├── libmfuart.h │ │ ├── libmfuart0.h │ │ ├── libmfuart1.h │ │ ├── libmfwtimer.h │ │ ├── offlpxosc.c │ │ ├── offxosc.c │ │ ├── pn15adv.c │ │ ├── pn15advtable.c │ │ ├── pn15out.c │ │ ├── pn15outtable.c │ │ ├── pn9.c │ │ ├── pn9bit.c │ │ ├── pn9bits.c │ │ ├── pn9buf.c │ │ ├── pn9byte.c │ │ ├── pn9table.c │ │ ├── radiocomminit.c │ │ ├── radiocommslpexit.c │ │ ├── radiodeepsleep.c │ │ ├── radiodefs.h │ │ ├── radiodswakecore.c │ │ ├── radiord16.c │ │ ├── radiord24.c │ │ ├── radiord32.c │ │ ├── radiordfifo.c │ │ ├── radioreset.c │ │ ├── radiowr16.c │ │ ├── radiowr24.c │ │ ├── radiowr32.c │ │ ├── radiowrfifo.c │ │ ├── random.c │ │ ├── resetcpu.c │ │ ├── rev8.c │ │ ├── setupcal.c │ │ ├── setuplpxosc.c │ │ ├── setupxosc.c │ │ ├── sgnlim16.c │ │ ├── sgnlim32.c │ │ ├── signext12.c │ │ ├── signext16.c │ │ ├── signext20.c │ │ ├── signext24.c │ │ ├── sleep.c │ │ ├── sleepcont.c │ │ ├── standby.c │ │ ├── uartinit.c │ │ ├── uartstop.c │ │ ├── uarttimer.c │ │ ├── wrnum.h │ │ ├── wrnum16.c │ │ ├── wrnum32.c │ │ ├── wt01rem.c │ │ ├── wt0adda.c │ │ ├── wt0addr.c │ │ ├── wt0curt.c │ │ ├── wt0rem.c │ │ ├── wt0setcfg.c │ │ ├── wt1adda.c │ │ ├── wt1addr.c │ │ ├── wt1curt.c │ │ ├── wt1rem.c │ │ ├── wt1setcfg.c │ │ ├── wtcbadd.c │ │ ├── wtcbrem.c │ │ ├── wtimer.c │ │ ├── wtimer.h │ │ ├── wtrem.c │ │ └── wtstdby.c ├── pthreads-w32-2-9-1-release │ ├── ANNOUNCE │ ├── BUGS │ ├── Bmakefile │ ├── CONTRIBUTORS │ ├── COPYING │ ├── COPYING.LIB │ ├── ChangeLog │ ├── FAQ │ ├── GNUmakefile │ ├── MAINTAINERS │ ├── Makefile │ ├── NEWS │ ├── Nmakefile │ ├── Nmakefile.tests │ ├── PROGRESS │ ├── README │ ├── README.Borland │ ├── README.CV │ ├── README.NONPORTABLE │ ├── README.Watcom │ ├── README.WinCE │ ├── TODO │ ├── WinCE-PORT │ ├── attr.c │ ├── autostatic.c │ ├── barrier.c │ ├── builddmc.bat │ ├── cancel.c │ ├── cleanup.c │ ├── condvar.c │ ├── config.h │ ├── context.h │ ├── create.c │ ├── dll.c │ ├── errno.c │ ├── exit.c │ ├── fork.c │ ├── global.c │ ├── implement.h │ ├── libpthreadGC2.stamp │ ├── manual │ │ ├── ChangeLog │ │ ├── PortabilityIssues.html │ │ ├── index.html │ │ ├── pthreadCancelableWait.html │ │ ├── pthread_attr_init.html │ │ ├── pthread_attr_setstackaddr.html │ │ ├── pthread_attr_setstacksize.html │ │ ├── pthread_barrier_init.html │ │ ├── pthread_barrier_wait.html │ │ ├── pthread_barrierattr_init.html │ │ ├── pthread_barrierattr_setpshared.html │ │ ├── pthread_cancel.html │ │ ├── pthread_cleanup_push.html │ │ ├── pthread_cond_init.html │ │ ├── pthread_condattr_init.html │ │ ├── pthread_condattr_setpshared.html │ │ ├── pthread_create.html │ │ ├── pthread_delay_np.html │ │ ├── pthread_detach.html │ │ ├── pthread_equal.html │ │ ├── pthread_exit.html │ │ ├── pthread_getunique_np.html │ │ ├── pthread_getw32threadhandle_np.html │ │ ├── pthread_join.html │ │ ├── pthread_key_create.html │ │ ├── pthread_kill.html │ │ ├── pthread_mutex_init.html │ │ ├── pthread_mutexattr_init.html │ │ ├── pthread_mutexattr_setpshared.html │ │ ├── pthread_num_processors_np.html │ │ ├── pthread_once.html │ │ ├── pthread_rwlock_init.html │ │ ├── pthread_rwlock_rdlock.html │ │ ├── pthread_rwlock_timedrdlock.html │ │ ├── pthread_rwlock_timedwrlock.html │ │ ├── pthread_rwlock_unlock.html │ │ ├── pthread_rwlock_wrlock.html │ │ ├── pthread_rwlockattr_init.html │ │ ├── pthread_rwlockattr_setpshared.html │ │ ├── pthread_self.html │ │ ├── pthread_setcancelstate.html │ │ ├── pthread_setcanceltype.html │ │ ├── pthread_setconcurrency.html │ │ ├── pthread_setschedparam.html │ │ ├── pthread_spin_init.html │ │ ├── pthread_spin_lock.html │ │ ├── pthread_spin_unlock.html │ │ ├── pthread_timechange_handler_np.html │ │ ├── pthread_win32_attach_detach_np.html │ │ ├── pthread_win32_test_features_np.html │ │ ├── sched_get_priority_max.html │ │ ├── sched_getscheduler.html │ │ ├── sched_setscheduler.html │ │ ├── sched_yield.html │ │ └── sem_init.html │ ├── misc.c │ ├── mutex.c │ ├── need_errno.h │ ├── nonportable.c │ ├── private.c │ ├── pthread.c │ ├── pthread.dsp │ ├── pthread.dsw │ ├── pthread.h │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getunique_np.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_mutex_consistent.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_MCS_lock.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_getprocessors.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_relmillisecs.c │ ├── ptw32_reuse.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_semwait.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── rwlock.c │ ├── sched.c │ ├── sched.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.c │ ├── semaphore.h │ ├── signal.c │ ├── spin.c │ ├── sync.c │ ├── tests │ │ ├── Bmakefile │ │ ├── ChangeLog │ │ ├── Debug.dsp │ │ ├── Debug.dsw │ │ ├── Debug.plg │ │ ├── Debug.txt │ │ ├── GNUmakefile │ │ ├── Makefile │ │ ├── README │ │ ├── README.BENCHTESTS │ │ ├── SIZES.GC │ │ ├── SIZES.GCE │ │ ├── SIZES.VC │ │ ├── SIZES.VCE │ │ ├── SIZES.VSE │ │ ├── Wmakefile │ │ ├── barrier1.c │ │ ├── barrier2.c │ │ ├── barrier3.c │ │ ├── barrier4.c │ │ ├── barrier5.c │ │ ├── barrier6.c │ │ ├── benchlib.c │ │ ├── benchtest.h │ │ ├── benchtest1.c │ │ ├── benchtest2.c │ │ ├── benchtest3.c │ │ ├── benchtest4.c │ │ ├── benchtest5.c │ │ ├── cancel1.c │ │ ├── cancel2.c │ │ ├── cancel3.c │ │ ├── cancel4.c │ │ ├── cancel5.c │ │ ├── cancel6a.c │ │ ├── cancel6d.c │ │ ├── cancel7.c │ │ ├── cancel8.c │ │ ├── cancel9.c │ │ ├── cleanup0.c │ │ ├── cleanup1.c │ │ ├── cleanup2.c │ │ ├── cleanup3.c │ │ ├── condvar1.c │ │ ├── condvar1_1.c │ │ ├── condvar1_2.c │ │ ├── condvar2.c │ │ ├── condvar2_1.c │ │ ├── condvar3.c │ │ ├── condvar3_1.c │ │ ├── condvar3_2.c │ │ ├── condvar3_3.c │ │ ├── condvar4.c │ │ ├── condvar5.c │ │ ├── condvar6.c │ │ ├── condvar7.c │ │ ├── condvar8.c │ │ ├── condvar9.c │ │ ├── context1.c │ │ ├── count1.c │ │ ├── create1.c │ │ ├── create2.c │ │ ├── create3.c │ │ ├── delay1.c │ │ ├── delay2.c │ │ ├── detach1.c │ │ ├── equal1.c │ │ ├── errno1.c │ │ ├── exception1.c │ │ ├── exception2.c │ │ ├── exception3.c │ │ ├── exit1.c │ │ ├── exit2.c │ │ ├── exit3.c │ │ ├── exit4.c │ │ ├── exit5.c │ │ ├── eyal1.c │ │ ├── inherit1.c │ │ ├── join0.c │ │ ├── join1.c │ │ ├── join2.c │ │ ├── join3.c │ │ ├── kill1.c │ │ ├── loadfree.c │ │ ├── mutex1.c │ │ ├── mutex1e.c │ │ ├── mutex1n.c │ │ ├── mutex1r.c │ │ ├── mutex2.c │ │ ├── mutex2e.c │ │ ├── mutex2r.c │ │ ├── mutex3.c │ │ ├── mutex3e.c │ │ ├── mutex3r.c │ │ ├── mutex4.c │ │ ├── mutex5.c │ │ ├── mutex6.c │ │ ├── mutex6e.c │ │ ├── mutex6es.c │ │ ├── mutex6n.c │ │ ├── mutex6r.c │ │ ├── mutex6rs.c │ │ ├── mutex6s.c │ │ ├── mutex7.c │ │ ├── mutex7e.c │ │ ├── mutex7n.c │ │ ├── mutex7r.c │ │ ├── mutex8.c │ │ ├── mutex8e.c │ │ ├── mutex8n.c │ │ ├── mutex8r.c │ │ ├── once1.c │ │ ├── once2.c │ │ ├── once3.c │ │ ├── once4.c │ │ ├── openmp1.c │ │ ├── priority1.c │ │ ├── priority2.c │ │ ├── reuse1.c │ │ ├── reuse2.c │ │ ├── robust1.c │ │ ├── robust2.c │ │ ├── robust3.c │ │ ├── robust4.c │ │ ├── robust5.c │ │ ├── rwlock1.c │ │ ├── rwlock2.c │ │ ├── rwlock2_t.c │ │ ├── rwlock3.c │ │ ├── rwlock3_t.c │ │ ├── rwlock4.c │ │ ├── rwlock4_t.c │ │ ├── rwlock5.c │ │ ├── rwlock5_t.c │ │ ├── rwlock6.c │ │ ├── rwlock6_t.c │ │ ├── rwlock6_t2.c │ │ ├── rwlock7.c │ │ ├── rwlock8.c │ │ ├── self1.c │ │ ├── self2.c │ │ ├── semaphore1.c │ │ ├── semaphore2.c │ │ ├── semaphore3.c │ │ ├── semaphore4.c │ │ ├── semaphore4t.c │ │ ├── semaphore5.c │ │ ├── sequence1.c │ │ ├── sizes.c │ │ ├── spin1.c │ │ ├── spin2.c │ │ ├── spin3.c │ │ ├── spin4.c │ │ ├── stress1.c │ │ ├── test.h │ │ ├── tryentercs.c │ │ ├── tryentercs2.c │ │ ├── tsd1.c │ │ ├── tsd2.c │ │ ├── valid1.c │ │ └── valid2.c │ ├── tsd.c │ ├── version.rc │ └── w32_CancelableWait.c └── wiringPi │ ├── COPYING.LESSER │ ├── INSTALL │ ├── People │ ├── README.TXT │ ├── VERSION │ ├── build │ ├── debian-template │ └── wiringPi │ │ └── DEBIAN │ │ ├── control │ │ ├── postinst │ │ └── postrm │ ├── debian │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── libwiringpi-dev.dirs │ ├── libwiringpi-dev.install │ ├── libwiringpi2.install │ ├── libwiringpi2.shlibs │ ├── rules │ ├── wiringpi.dirs │ └── wiringpi.install │ ├── devLib │ ├── Makefile │ ├── ds1302.c │ ├── ds1302.h │ ├── font.h │ ├── gertboard.c │ ├── gertboard.h │ ├── lcd.c │ ├── lcd.h │ ├── lcd128x64.c │ ├── lcd128x64.h │ ├── libwiringPiDev.so.2.44 │ ├── maxdetect.c │ ├── maxdetect.h │ ├── piFace.c │ ├── piFace.h │ ├── piFaceOld.c │ ├── piGlow.c │ ├── piGlow.h │ ├── piNes.c │ ├── piNes.h │ ├── scrollPhat.c │ ├── scrollPhat.h │ └── scrollPhatFont.h │ ├── examples │ ├── COPYING.LESSER │ ├── Gertboard │ │ ├── 7segments.c │ │ ├── Makefile │ │ ├── buttons.c │ │ ├── gertboard.c │ │ ├── record.c │ │ ├── temperature.c │ │ ├── voltmeter.c │ │ └── vumeter.c │ ├── Makefile │ ├── PiFace │ │ ├── Makefile │ │ ├── blink.c │ │ ├── buttons.c │ │ ├── ladder.c │ │ ├── metro.c │ │ ├── motor.c │ │ └── reaction.c │ ├── PiGlow │ │ ├── Makefile │ │ ├── piGlow0.c │ │ ├── piGlow1.c │ │ └── piglow.c │ ├── README.TXT │ ├── blink.c │ ├── blink.rtb │ ├── blink.sh │ ├── blink12.c │ ├── blink12drcs.c │ ├── blink6drcs.c │ ├── blink8-drcn.c │ ├── blink8.c │ ├── clock.c │ ├── delayTest.c │ ├── ds1302.c │ ├── header.h │ ├── isr-osc.c │ ├── isr.c │ ├── lcd-adafruit.c │ ├── lcd.c │ ├── lowPower.c │ ├── max31855.c │ ├── nes.c │ ├── okLed.c │ ├── pwm.c │ ├── q2w │ │ ├── Makefile │ │ ├── binary.c │ │ ├── blink-io.c │ │ ├── blink.c │ │ ├── blink.sh │ │ ├── bright.c │ │ ├── button.c │ │ └── volts.c │ ├── rht03.c │ ├── scrollPhat │ │ ├── Makefile │ │ ├── scphat.c │ │ └── test.c │ ├── serialRead.c │ ├── serialTest.c │ ├── servo.c │ ├── softPwm.c │ ├── softTone.c │ ├── speed.c │ ├── spiSpeed.c │ └── wfi.c │ ├── gpio │ ├── COPYING.LESSER │ ├── Makefile │ ├── gpio │ ├── gpio.1 │ ├── gpio.c │ ├── pins.c │ ├── pintest │ ├── readall.c │ └── test.sh │ ├── newVersion │ ├── pins │ ├── Makefile │ ├── pins.pdf │ └── pins.tex │ ├── update │ ├── version.h │ ├── wiringPi │ ├── COPYING.LESSER │ ├── Makefile │ ├── ads1115.c │ ├── ads1115.h │ ├── bmp180.c │ ├── bmp180.h │ ├── drcNet.c │ ├── drcNet.h │ ├── drcSerial.c │ ├── drcSerial.h │ ├── ds18b20.c │ ├── ds18b20.h │ ├── htu21d.c │ ├── htu21d.h │ ├── libwiringPi.so.2.44 │ ├── max31855.c │ ├── max31855.h │ ├── max5322.c │ ├── max5322.h │ ├── mcp23008.c │ ├── mcp23008.h │ ├── mcp23016.c │ ├── mcp23016.h │ ├── mcp23016reg.h │ ├── mcp23017.c │ ├── mcp23017.h │ ├── mcp23s08.c │ ├── mcp23s08.h │ ├── mcp23s17.c │ ├── mcp23s17.h │ ├── mcp23x08.h │ ├── mcp23x0817.h │ ├── mcp3002.c │ ├── mcp3002.h │ ├── mcp3004.c │ ├── mcp3004.h │ ├── mcp3422.c │ ├── mcp3422.h │ ├── mcp4802.c │ ├── mcp4802.h │ ├── pcf8574.c │ ├── pcf8574.h │ ├── pcf8591.c │ ├── pcf8591.h │ ├── piHiPri.c │ ├── piThread.c │ ├── pseudoPins.c │ ├── pseudoPins.h │ ├── rht03.c │ ├── rht03.h │ ├── sn3218.c │ ├── sn3218.h │ ├── softPwm.c │ ├── softPwm.h │ ├── softServo.c │ ├── softServo.h │ ├── softTone.c │ ├── softTone.h │ ├── sr595.c │ ├── sr595.h │ ├── wiringPi.c │ ├── wiringPi.h │ ├── wiringPiI2C.c │ ├── wiringPiI2C.h │ ├── wiringPiSPI.c │ ├── wiringPiSPI.h │ ├── wiringSerial.c │ ├── wiringSerial.h │ ├── wiringShift.c │ ├── wiringShift.h │ ├── wpiExtensions.c │ └── wpiExtensions.h │ └── wiringPiD │ ├── Makefile │ ├── daemonise.c │ ├── daemonise.h │ ├── drcNetCmd.h │ ├── network.c │ ├── network.h │ ├── runRemote.c │ ├── runRemote.h │ ├── wiringpid │ └── wiringpid.c ├── piglatin ├── .cproject ├── .gitignore ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.managedbuilder.core.prefs └── piglatin_main.c ├── qucs └── AX5043_prj │ ├── Balun.dat │ ├── Balun.dpl │ ├── Balun169.sch │ ├── Balun433.sch │ ├── Balun470.sch │ └── Balun900.sch ├── receive ├── .cproject ├── .gitignore ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.managedbuilder.core.prefs └── receive_main.c ├── sandbox ├── .cproject ├── .gitignore ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.managedbuilder.core.prefs └── sandbox.c ├── transmit ├── .cproject ├── .gitignore ├── .project ├── .settings │ ├── language.settings.xml │ └── org.eclipse.cdt.managedbuilder.core.prefs └── transmit_main.c └── transmit2freq ├── .cproject ├── .gitignore ├── .project ├── .settings ├── language.settings.xml └── org.eclipse.cdt.managedbuilder.core.prefs └── transmit2freq_main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/README.md -------------------------------------------------------------------------------- /RemoteSystemsTempFiles/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/RemoteSystemsTempFiles/.project -------------------------------------------------------------------------------- /afsktx/ax25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/afsktx/ax25.c -------------------------------------------------------------------------------- /afsktx/ax25.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/afsktx/ax25.h -------------------------------------------------------------------------------- /afsktx/ax5043.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/afsktx/ax5043.c -------------------------------------------------------------------------------- /afsktx/ax5043.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/afsktx/ax5043.h -------------------------------------------------------------------------------- /afsktx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/afsktx/main.c -------------------------------------------------------------------------------- /afsktx/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/afsktx/status.h -------------------------------------------------------------------------------- /afsktx/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/afsktx/utils.h -------------------------------------------------------------------------------- /ax5043/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/.cproject -------------------------------------------------------------------------------- /ax5043/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /ax5043/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/.project -------------------------------------------------------------------------------- /ax5043/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/.settings/language.settings.xml -------------------------------------------------------------------------------- /ax5043/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/Doxyfile -------------------------------------------------------------------------------- /ax5043/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/README.md -------------------------------------------------------------------------------- /ax5043/ax5043support/ax5043init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/ax5043support/ax5043init.c -------------------------------------------------------------------------------- /ax5043/ax5043support/ax5043init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/ax5043support/ax5043init.h -------------------------------------------------------------------------------- /ax5043/ax5043support/ax5043rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/ax5043support/ax5043rx.c -------------------------------------------------------------------------------- /ax5043/ax5043support/ax5043rx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/ax5043support/ax5043rx.h -------------------------------------------------------------------------------- /ax5043/ax5043support/ax5043tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/ax5043support/ax5043tx.c -------------------------------------------------------------------------------- /ax5043/ax5043support/ax5043tx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/ax5043support/ax5043tx.h -------------------------------------------------------------------------------- /ax5043/axradio/axradioinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradioinit.c -------------------------------------------------------------------------------- /ax5043/axradio/axradioinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradioinit.h -------------------------------------------------------------------------------- /ax5043/axradio/axradioinit_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradioinit_p.h -------------------------------------------------------------------------------- /ax5043/axradio/axradiomode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiomode.c -------------------------------------------------------------------------------- /ax5043/axradio/axradiomode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiomode.h -------------------------------------------------------------------------------- /ax5043/axradio/axradiomode_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiomode_p.h -------------------------------------------------------------------------------- /ax5043/axradio/axradiorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiorx.c -------------------------------------------------------------------------------- /ax5043/axradio/axradiorx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiorx.h -------------------------------------------------------------------------------- /ax5043/axradio/axradiorx_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiorx_p.h -------------------------------------------------------------------------------- /ax5043/axradio/axradiotx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiotx.c -------------------------------------------------------------------------------- /ax5043/axradio/axradiotx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiotx.h -------------------------------------------------------------------------------- /ax5043/axradio/axradiotx_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/axradio/axradiotx_p.h -------------------------------------------------------------------------------- /ax5043/crc/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/crc/crc.c -------------------------------------------------------------------------------- /ax5043/crc/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/crc/crc.h -------------------------------------------------------------------------------- /ax5043/doc/TransceiverFramework.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/doc/TransceiverFramework.pdf -------------------------------------------------------------------------------- /ax5043/generated/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/generated/config.c -------------------------------------------------------------------------------- /ax5043/generated/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/generated/config.h -------------------------------------------------------------------------------- /ax5043/generated/configcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/generated/configcommon.c -------------------------------------------------------------------------------- /ax5043/generated/configrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/generated/configrx.c -------------------------------------------------------------------------------- /ax5043/generated/configrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/generated/configrx.h -------------------------------------------------------------------------------- /ax5043/generated/configtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/generated/configtx.c -------------------------------------------------------------------------------- /ax5043/generated/configtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/generated/configtx.h -------------------------------------------------------------------------------- /ax5043/images/logo55x55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/images/logo55x55.png -------------------------------------------------------------------------------- /ax5043/spi/ax5043spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/spi/ax5043spi.c -------------------------------------------------------------------------------- /ax5043/spi/ax5043spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/spi/ax5043spi.h -------------------------------------------------------------------------------- /ax5043/spi/ax5043spi_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/spi/ax5043spi_p.h -------------------------------------------------------------------------------- /ax5043/spi/dummyspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/spi/dummyspi.c -------------------------------------------------------------------------------- /ax5043/spi/dummyspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/ax5043/spi/dummyspi.h -------------------------------------------------------------------------------- /chat/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/chat/.cproject -------------------------------------------------------------------------------- /chat/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /chat/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/chat/.project -------------------------------------------------------------------------------- /chat/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/chat/.settings/language.settings.xml -------------------------------------------------------------------------------- /chat/chat_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/chat/chat_main.c -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/gpl.txt -------------------------------------------------------------------------------- /init/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/init/.cproject -------------------------------------------------------------------------------- /init/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /init/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/init/.project -------------------------------------------------------------------------------- /init/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/init/.settings/language.settings.xml -------------------------------------------------------------------------------- /init/init_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/init/init_main.c -------------------------------------------------------------------------------- /kicad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/.gitignore -------------------------------------------------------------------------------- /kicad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/README.md -------------------------------------------------------------------------------- /kicad/v1.3/PiHatAx5043-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/PiHatAx5043-cache.lib -------------------------------------------------------------------------------- /kicad/v1.3/PiHatAx5043-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/PiHatAx5043-rescue.lib -------------------------------------------------------------------------------- /kicad/v1.3/PiHatAx5043.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/PiHatAx5043.kicad_pcb -------------------------------------------------------------------------------- /kicad/v1.3/PiHatAx5043.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/PiHatAx5043.net -------------------------------------------------------------------------------- /kicad/v1.3/PiHatAx5043.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/PiHatAx5043.pro -------------------------------------------------------------------------------- /kicad/v1.3/PiHatAx5043.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/PiHatAx5043.sch -------------------------------------------------------------------------------- /kicad/v1.3/PiHatAx5043.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/PiHatAx5043.xml -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-B.Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-B.Cu.gbl -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-B.Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-B.Mask.gbs -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-B.SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-B.SilkS.gbo -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-F.Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-F.Cu.gtl -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-F.Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-F.Mask.gts -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-F.Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-F.Paste.gtp -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-F.SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-F.SilkS.gto -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-In1.Cu.g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-In1.Cu.g2 -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-In2.Cu.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-In2.Cu.g3 -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043-NPTH.drl -------------------------------------------------------------------------------- /kicad/v1.3/gerber/PiHatAx5043.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/gerber/PiHatAx5043.drl -------------------------------------------------------------------------------- /kicad/v1.3/meta/PiHatAx5043-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/meta/PiHatAx5043-F.Paste.gbr -------------------------------------------------------------------------------- /kicad/v1.3/meta/PiHatAx5043-F.Paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/meta/PiHatAx5043-F.Paste.svg -------------------------------------------------------------------------------- /kicad/v1.3/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1.3/sym-lib-table -------------------------------------------------------------------------------- /kicad/v1_3_5/PiHatAx5043-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/PiHatAx5043-cache.lib -------------------------------------------------------------------------------- /kicad/v1_3_5/PiHatAx5043.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/PiHatAx5043.kicad_pcb -------------------------------------------------------------------------------- /kicad/v1_3_5/PiHatAx5043.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/PiHatAx5043.net -------------------------------------------------------------------------------- /kicad/v1_3_5/PiHatAx5043.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/PiHatAx5043.pro -------------------------------------------------------------------------------- /kicad/v1_3_5/PiHatAx5043.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/PiHatAx5043.sch -------------------------------------------------------------------------------- /kicad/v1_3_5/PiHatAx5043.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/PiHatAx5043.xml -------------------------------------------------------------------------------- /kicad/v1_3_5/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/fp-lib-table -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-B.Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-B.Cu.gbl -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-B.Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-B.Mask.gbs -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-B.SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-B.SilkS.gbo -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-Edge.Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-Edge.Cuts.gm1 -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-F.Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-F.Cu.gtl -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-F.Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-F.Mask.gts -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-F.Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-F.Paste.gtp -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-F.SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-F.SilkS.gto -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-In1.Cu.g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-In1.Cu.g2 -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043-In2.Cu.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043-In2.Cu.g3 -------------------------------------------------------------------------------- /kicad/v1_3_5/gerber/PiHatAx5043.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/gerber/PiHatAx5043.drl -------------------------------------------------------------------------------- /kicad/v1_3_5/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | -------------------------------------------------------------------------------- /kicad/v1_3_5/library/AX5043-1-TA05.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/library/AX5043-1-TA05.bck -------------------------------------------------------------------------------- /kicad/v1_3_5/library/AX5043-1-TA05.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/library/AX5043-1-TA05.dcm -------------------------------------------------------------------------------- /kicad/v1_3_5/library/AX5043-1-TA05.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/library/AX5043-1-TA05.lib -------------------------------------------------------------------------------- /kicad/v1_3_5/library/AX5243-1-TA05.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/library/AX5243-1-TA05.dcm -------------------------------------------------------------------------------- /kicad/v1_3_5/library/AX5243-1-TA05.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/library/AX5243-1-TA05.lib -------------------------------------------------------------------------------- /kicad/v1_3_5/library/AX5243-1-TA05.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/library/AX5243-1-TA05.mod -------------------------------------------------------------------------------- /kicad/v1_3_5/library/max31725.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /kicad/v1_3_5/library/max31725.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /kicad/v1_3_5/library/max31725.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/library/max31725.lib -------------------------------------------------------------------------------- /kicad/v1_3_5/meta/PiHatAx5043-F.Paste.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/meta/PiHatAx5043-F.Paste.gbr -------------------------------------------------------------------------------- /kicad/v1_3_5/meta/PiHatAx5043-F.Paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/meta/PiHatAx5043-F.Paste.svg -------------------------------------------------------------------------------- /kicad/v1_3_5/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v1_3_5/sym-lib-table -------------------------------------------------------------------------------- /kicad/v2_0/PiHatAx5043-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/PiHatAx5043-cache.lib -------------------------------------------------------------------------------- /kicad/v2_0/PiHatAx5043.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/PiHatAx5043.csv -------------------------------------------------------------------------------- /kicad/v2_0/PiHatAx5043.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/PiHatAx5043.kicad_pcb -------------------------------------------------------------------------------- /kicad/v2_0/PiHatAx5043.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/PiHatAx5043.net -------------------------------------------------------------------------------- /kicad/v2_0/PiHatAx5043.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/PiHatAx5043.pro -------------------------------------------------------------------------------- /kicad/v2_0/PiHatAx5043.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/PiHatAx5043.sch -------------------------------------------------------------------------------- /kicad/v2_0/PiHatAx5043.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/PiHatAx5043.xml -------------------------------------------------------------------------------- /kicad/v2_0/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/fp-lib-table -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-B.Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-B.Cu.gbl -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-B.Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-B.Mask.gbs -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-B.SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-B.SilkS.gbo -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-Edge.Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-Edge.Cuts.gm1 -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-F.Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-F.Cu.gtl -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-F.Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-F.Mask.gts -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-F.Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-F.Paste.gtp -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-F.SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-F.SilkS.gto -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-In1.Cu.g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-In1.Cu.g2 -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043-In2.Cu.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043-In2.Cu.g3 -------------------------------------------------------------------------------- /kicad/v2_0/gerber/PiHatAx5043.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/gerber/PiHatAx5043.drl -------------------------------------------------------------------------------- /kicad/v2_0/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.bck 3 | -------------------------------------------------------------------------------- /kicad/v2_0/library/AX5043-1-TA05.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/library/AX5043-1-TA05.dcm -------------------------------------------------------------------------------- /kicad/v2_0/library/AX5043-1-TA05.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/library/AX5043-1-TA05.lib -------------------------------------------------------------------------------- /kicad/v2_0/library/MAX-M8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/library/MAX-M8.lib -------------------------------------------------------------------------------- /kicad/v2_0/library/MAX-M8.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/library/MAX-M8.mod -------------------------------------------------------------------------------- /kicad/v2_0/library/max31725.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /kicad/v2_0/library/max31725.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/library/max31725.lib -------------------------------------------------------------------------------- /kicad/v2_0/library/nxp.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /kicad/v2_0/library/nxp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/library/nxp.lib -------------------------------------------------------------------------------- /kicad/v2_0/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/kicad/v2_0/sym-lib-table -------------------------------------------------------------------------------- /libs/libmf/buildiar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/buildiar/Makefile -------------------------------------------------------------------------------- /libs/libmf/buildiar/genrregs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/buildiar/genrregs.pl -------------------------------------------------------------------------------- /libs/libmf/buildkeil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/buildkeil/Makefile -------------------------------------------------------------------------------- /libs/libmf/buildkeilx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/buildkeilx/Makefile -------------------------------------------------------------------------------- /libs/libmf/buildsdcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/buildsdcc/Makefile -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5031comminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5031comminit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5031commslpexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5031commslpexit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5031deepsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5031deepsleep.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5031rdfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5031rdfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5031reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5031reset.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5031wrfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5031wrfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5042comminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5042comminit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5042commslpexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5042commslpexit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5042deepsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5042deepsleep.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5042rdfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5042rdfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5042reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5042reset.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5042wrfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5042wrfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5043comminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5043comminit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5043commslpexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5043commslpexit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5043deepsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5043deepsleep.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5043rdfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5043rdfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5043reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5043reset.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5043wrfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5043wrfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5051comminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5051comminit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5051commslpexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5051commslpexit.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5051deepsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5051deepsleep.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5051rdfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5051rdfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5051reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5051reset.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/ax5051wrfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/ax5051wrfifo.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16ansi.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16ansib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16ansib.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16ansimsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16ansimsb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16ansimsbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16ansimsbb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16dnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16dnp.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16dnpb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16dnpb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16dnpmsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16dnpmsb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc16dnpmsbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc16dnpmsbb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc32ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc32ansi.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc32ansib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc32ansib.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc32ansimsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc32ansimsb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc32ansimsbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc32ansimsbb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8ccittb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8ccittb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8ccittmsbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8ccittmsbb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8onewireb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8onewireb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8onewiremsbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8onewiremsbb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8tccitt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8tccitt.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8tccittmsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8tccittmsb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8tonewire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8tonewire.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crc8tonewiremsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crc8tonewiremsb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crcccitt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crcccitt.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crcccittb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crcccittb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crcccittmsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crcccittmsb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/crcccittmsbb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/crcccittmsbb.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkrx.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkrxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkrxbuf.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnktx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnktx.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnktxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnktxbuf.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwrhex16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwrhex16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwrhex32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwrhex32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwrhexu16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwrhexu16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwrhexu32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwrhexu32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwrnum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwrnum16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwrnum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwrnum32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwrstr.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwru16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwru16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/dbglnkwru32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/dbglnkwru32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/lcduwrhex16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/lcduwrhex16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/lcduwrhex32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/lcduwrhex32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/lcduwrnum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/lcduwrnum16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/lcduwrnum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/lcduwrnum32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0init.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0rx.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0rxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0rxbuf.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0stop.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0tx.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0txbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0txbuf.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wrhex16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wrhex16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wrhex32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wrhex32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wrhexu16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wrhexu16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wrhexu32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wrhexu32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wrnum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wrnum16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wrnum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wrnum32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wrstr.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wru16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wru16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart0wru32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart0wru32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1init.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1rx.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1rxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1rxbuf.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1stop.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1tx.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1txbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1txbuf.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wrhex16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wrhex16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wrhex32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wrhex32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wrhexu16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wrhexu16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wrhexu32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wrhexu32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wrnum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wrnum16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wrnum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wrnum32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wrstr.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wru16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wru16.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uart1wru32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uart1wru32.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uarttimer0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uarttimer0.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uarttimer1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uarttimer1.c -------------------------------------------------------------------------------- /libs/libmf/builtsource/uarttimer2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/builtsource/uarttimer2.c -------------------------------------------------------------------------------- /libs/libmf/doc/LibMF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/doc/LibMF.pdf -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nlpc-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nlpc-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nlpd-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nlpd-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nlxc-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nlxc-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nlxd-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nlxd-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nsdc-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nsdc-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nsdd-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nsdd-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nsic-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nsic-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nsid-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nsid-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nsoc-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nsoc-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-nsod-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-nsod-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-ntdc-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-ntdc-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-ntdd-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-ntdd-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-ntic-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-ntic-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-ntid-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-ntid-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-ntoc-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-ntoc-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf-pli-ntod-1e16x01.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf-pli-ntod-1e16x01.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmf.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmf.r51 -------------------------------------------------------------------------------- /libs/libmf/iar/libmflarge.r51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/iar/libmflarge.r51 -------------------------------------------------------------------------------- /libs/libmf/include/ax8052.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/ax8052.h -------------------------------------------------------------------------------- /libs/libmf/include/ax8052f131.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/ax8052f131.h -------------------------------------------------------------------------------- /libs/libmf/include/ax8052f142.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/ax8052f142.h -------------------------------------------------------------------------------- /libs/libmf/include/ax8052f143.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/ax8052f143.h -------------------------------------------------------------------------------- /libs/libmf/include/ax8052f151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/ax8052f151.h -------------------------------------------------------------------------------- /libs/libmf/include/ax8052regaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/ax8052regaddr.h -------------------------------------------------------------------------------- /libs/libmf/include/axcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/axcompiler.h -------------------------------------------------------------------------------- /libs/libmf/include/libmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmf.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfadc.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfbch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfbch.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfcalsector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfcalsector.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfcrc.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfdbglink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfdbglink.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfflash.h -------------------------------------------------------------------------------- /libs/libmf/include/libmflcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmflcd.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfosc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfosc.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfradio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfradio.h -------------------------------------------------------------------------------- /libs/libmf/include/libmftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmftypes.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfuart.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfuart0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfuart0.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfuart1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfuart1.h -------------------------------------------------------------------------------- /libs/libmf/include/libmfwtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/include/libmfwtimer.h -------------------------------------------------------------------------------- /libs/libmf/keil/libmf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/keil/libmf.lib -------------------------------------------------------------------------------- /libs/libmf/keil/libmflarge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/keil/libmflarge.lib -------------------------------------------------------------------------------- /libs/libmf/keil2/libmf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/keil2/libmf.lib -------------------------------------------------------------------------------- /libs/libmf/keil2/libmflarge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/keil2/libmflarge.lib -------------------------------------------------------------------------------- /libs/libmf/sdcc/libmf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/sdcc/libmf.lib -------------------------------------------------------------------------------- /libs/libmf/sdcc/libmflarge.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/sdcc/libmflarge.lib -------------------------------------------------------------------------------- /libs/libmf/source/adccal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adccal.c -------------------------------------------------------------------------------- /libs/libmf/source/adccalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adccalg.c -------------------------------------------------------------------------------- /libs/libmf/source/adccalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adccalt.c -------------------------------------------------------------------------------- /libs/libmf/source/adcseoffs00.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adcseoffs00.c -------------------------------------------------------------------------------- /libs/libmf/source/adcseoffs01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adcseoffs01.c -------------------------------------------------------------------------------- /libs/libmf/source/adcseoffs10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adcseoffs10.c -------------------------------------------------------------------------------- /libs/libmf/source/adctemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adctemp.c -------------------------------------------------------------------------------- /libs/libmf/source/adcuncal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/adcuncal.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5031rclkdis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5031rclkdis.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5031rclkena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5031rclkena.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5031regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5031regs.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5042rclkdis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5042rclkdis.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5042rclkena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5042rclkena.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5042regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5042regs.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5043rclkdis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5043rclkdis.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5043rclkena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5043rclkena.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5043regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5043regs.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5051rclkdis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5051rclkdis.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5051rclkena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5051rclkena.c -------------------------------------------------------------------------------- /libs/libmf/source/ax5051regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax5051regs.c -------------------------------------------------------------------------------- /libs/libmf/source/ax8052.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax8052.h -------------------------------------------------------------------------------- /libs/libmf/source/ax8052f131.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax8052f131.h -------------------------------------------------------------------------------- /libs/libmf/source/ax8052f142.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax8052f142.h -------------------------------------------------------------------------------- /libs/libmf/source/ax8052f143.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax8052f143.h -------------------------------------------------------------------------------- /libs/libmf/source/ax8052f151.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax8052f151.h -------------------------------------------------------------------------------- /libs/libmf/source/ax8052regaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax8052regaddr.h -------------------------------------------------------------------------------- /libs/libmf/source/ax8052regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/ax8052regs.c -------------------------------------------------------------------------------- /libs/libmf/source/axcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/axcompiler.h -------------------------------------------------------------------------------- /libs/libmf/source/bch3121dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/bch3121dec.c -------------------------------------------------------------------------------- /libs/libmf/source/bch3121decp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/bch3121decp.c -------------------------------------------------------------------------------- /libs/libmf/source/bch3121enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/bch3121enc.c -------------------------------------------------------------------------------- /libs/libmf/source/bch3121encp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/bch3121encp.c -------------------------------------------------------------------------------- /libs/libmf/source/bch3121stab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/bch3121stab.c -------------------------------------------------------------------------------- /libs/libmf/source/bch3121syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/bch3121syn.c -------------------------------------------------------------------------------- /libs/libmf/source/chksgnlim16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/chksgnlim16.c -------------------------------------------------------------------------------- /libs/libmf/source/chksgnlim32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/chksgnlim32.c -------------------------------------------------------------------------------- /libs/libmf/source/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc16.c -------------------------------------------------------------------------------- /libs/libmf/source/crc16b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc16b.c -------------------------------------------------------------------------------- /libs/libmf/source/crc16dnpmsbtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc16dnpmsbtable.c -------------------------------------------------------------------------------- /libs/libmf/source/crc16dnptable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc16dnptable.c -------------------------------------------------------------------------------- /libs/libmf/source/crc16msb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc16msb.c -------------------------------------------------------------------------------- /libs/libmf/source/crc16msbtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc16msbtable.c -------------------------------------------------------------------------------- /libs/libmf/source/crc16table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc16table.c -------------------------------------------------------------------------------- /libs/libmf/source/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc32.c -------------------------------------------------------------------------------- /libs/libmf/source/crc32b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc32b.c -------------------------------------------------------------------------------- /libs/libmf/source/crc32msb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc32msb.c -------------------------------------------------------------------------------- /libs/libmf/source/crc32msbtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc32msbtable.c -------------------------------------------------------------------------------- /libs/libmf/source/crc32table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc32table.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8b.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8ccitt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8ccitt.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8ccittmsbtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8ccittmsbtable.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8ccitttable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8ccitttable.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8msb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8msb.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8onewire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8onewire.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8onewiremsbtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8onewiremsbtable.c -------------------------------------------------------------------------------- /libs/libmf/source/crc8onewiretable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crc8onewiretable.c -------------------------------------------------------------------------------- /libs/libmf/source/crcccittmsbtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crcccittmsbtable.c -------------------------------------------------------------------------------- /libs/libmf/source/crcccitttable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/crcccitttable.c -------------------------------------------------------------------------------- /libs/libmf/source/dbglink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/dbglink.c -------------------------------------------------------------------------------- /libs/libmf/source/deepsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/deepsleep.c -------------------------------------------------------------------------------- /libs/libmf/source/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/delay.c -------------------------------------------------------------------------------- /libs/libmf/source/flashcal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashcal.c -------------------------------------------------------------------------------- /libs/libmf/source/flashcsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashcsec.c -------------------------------------------------------------------------------- /libs/libmf/source/flashlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashlock.c -------------------------------------------------------------------------------- /libs/libmf/source/flashpgerase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashpgerase.c -------------------------------------------------------------------------------- /libs/libmf/source/flashread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashread.c -------------------------------------------------------------------------------- /libs/libmf/source/flashunlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashunlock.c -------------------------------------------------------------------------------- /libs/libmf/source/flashwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashwait.c -------------------------------------------------------------------------------- /libs/libmf/source/flashwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/flashwrite.c -------------------------------------------------------------------------------- /libs/libmf/source/fmemcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/fmemcpy.c -------------------------------------------------------------------------------- /libs/libmf/source/fmemcpyiar.s51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/fmemcpyiar.s51 -------------------------------------------------------------------------------- /libs/libmf/source/fmemset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/fmemset.c -------------------------------------------------------------------------------- /libs/libmf/source/fmemsetiar.s51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/fmemsetiar.s51 -------------------------------------------------------------------------------- /libs/libmf/source/getpspiar.s51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/getpspiar.s51 -------------------------------------------------------------------------------- /libs/libmf/source/getxspiar.s51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/getxspiar.s51 -------------------------------------------------------------------------------- /libs/libmf/source/graydec8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/graydec8.c -------------------------------------------------------------------------------- /libs/libmf/source/grayenc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/grayenc8.c -------------------------------------------------------------------------------- /libs/libmf/source/hweight16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/hweight16.c -------------------------------------------------------------------------------- /libs/libmf/source/hweight32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/hweight32.c -------------------------------------------------------------------------------- /libs/libmf/source/hweight8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/hweight8.c -------------------------------------------------------------------------------- /libs/libmf/source/iorx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iorx.c -------------------------------------------------------------------------------- /libs/libmf/source/iorxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iorxbuf.c -------------------------------------------------------------------------------- /libs/libmf/source/iotx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iotx.c -------------------------------------------------------------------------------- /libs/libmf/source/iotxbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iotxbuf.c -------------------------------------------------------------------------------- /libs/libmf/source/iowrhex16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowrhex16.c -------------------------------------------------------------------------------- /libs/libmf/source/iowrhex32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowrhex32.c -------------------------------------------------------------------------------- /libs/libmf/source/iowrhexu16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowrhexu16.c -------------------------------------------------------------------------------- /libs/libmf/source/iowrhexu32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowrhexu32.c -------------------------------------------------------------------------------- /libs/libmf/source/iowrnum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowrnum16.c -------------------------------------------------------------------------------- /libs/libmf/source/iowrnum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowrnum32.c -------------------------------------------------------------------------------- /libs/libmf/source/iowrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowrstr.c -------------------------------------------------------------------------------- /libs/libmf/source/iowru16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowru16.c -------------------------------------------------------------------------------- /libs/libmf/source/iowru32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/iowru32.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdclear.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdclrdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdclrdisp.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdinit.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdsetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdsetpos.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdwrhexu16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdwrhexu16.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdwrhexu32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdwrhexu32.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdwrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdwrstr.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdwru16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdwru16.c -------------------------------------------------------------------------------- /libs/libmf/source/lcdwru32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/lcdwru32.c -------------------------------------------------------------------------------- /libs/libmf/source/libmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmf.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfadc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfadc.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfbch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfbch.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfcalsector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfcalsector.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfcrc.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfdbglink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfdbglink.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfflash.h -------------------------------------------------------------------------------- /libs/libmf/source/libmflcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmflcd.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfosc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfosc.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfradio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfradio.h -------------------------------------------------------------------------------- /libs/libmf/source/libmftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmftypes.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfuart.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfuart0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfuart0.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfuart1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfuart1.h -------------------------------------------------------------------------------- /libs/libmf/source/libmfwtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/libmfwtimer.h -------------------------------------------------------------------------------- /libs/libmf/source/offlpxosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/offlpxosc.c -------------------------------------------------------------------------------- /libs/libmf/source/offxosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/offxosc.c -------------------------------------------------------------------------------- /libs/libmf/source/pn15adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn15adv.c -------------------------------------------------------------------------------- /libs/libmf/source/pn15advtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn15advtable.c -------------------------------------------------------------------------------- /libs/libmf/source/pn15out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn15out.c -------------------------------------------------------------------------------- /libs/libmf/source/pn15outtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn15outtable.c -------------------------------------------------------------------------------- /libs/libmf/source/pn9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn9.c -------------------------------------------------------------------------------- /libs/libmf/source/pn9bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn9bit.c -------------------------------------------------------------------------------- /libs/libmf/source/pn9bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn9bits.c -------------------------------------------------------------------------------- /libs/libmf/source/pn9buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn9buf.c -------------------------------------------------------------------------------- /libs/libmf/source/pn9byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn9byte.c -------------------------------------------------------------------------------- /libs/libmf/source/pn9table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/pn9table.c -------------------------------------------------------------------------------- /libs/libmf/source/radiocomminit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiocomminit.c -------------------------------------------------------------------------------- /libs/libmf/source/radiocommslpexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiocommslpexit.c -------------------------------------------------------------------------------- /libs/libmf/source/radiodeepsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiodeepsleep.c -------------------------------------------------------------------------------- /libs/libmf/source/radiodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiodefs.h -------------------------------------------------------------------------------- /libs/libmf/source/radiodswakecore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiodswakecore.c -------------------------------------------------------------------------------- /libs/libmf/source/radiord16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiord16.c -------------------------------------------------------------------------------- /libs/libmf/source/radiord24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiord24.c -------------------------------------------------------------------------------- /libs/libmf/source/radiord32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiord32.c -------------------------------------------------------------------------------- /libs/libmf/source/radiordfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiordfifo.c -------------------------------------------------------------------------------- /libs/libmf/source/radioreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radioreset.c -------------------------------------------------------------------------------- /libs/libmf/source/radiowr16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiowr16.c -------------------------------------------------------------------------------- /libs/libmf/source/radiowr24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiowr24.c -------------------------------------------------------------------------------- /libs/libmf/source/radiowr32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiowr32.c -------------------------------------------------------------------------------- /libs/libmf/source/radiowrfifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/radiowrfifo.c -------------------------------------------------------------------------------- /libs/libmf/source/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/random.c -------------------------------------------------------------------------------- /libs/libmf/source/resetcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/resetcpu.c -------------------------------------------------------------------------------- /libs/libmf/source/rev8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/rev8.c -------------------------------------------------------------------------------- /libs/libmf/source/setupcal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/setupcal.c -------------------------------------------------------------------------------- /libs/libmf/source/setuplpxosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/setuplpxosc.c -------------------------------------------------------------------------------- /libs/libmf/source/setupxosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/setupxosc.c -------------------------------------------------------------------------------- /libs/libmf/source/sgnlim16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/sgnlim16.c -------------------------------------------------------------------------------- /libs/libmf/source/sgnlim32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/sgnlim32.c -------------------------------------------------------------------------------- /libs/libmf/source/signext12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/signext12.c -------------------------------------------------------------------------------- /libs/libmf/source/signext16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/signext16.c -------------------------------------------------------------------------------- /libs/libmf/source/signext20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/signext20.c -------------------------------------------------------------------------------- /libs/libmf/source/signext24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/signext24.c -------------------------------------------------------------------------------- /libs/libmf/source/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/sleep.c -------------------------------------------------------------------------------- /libs/libmf/source/sleepcont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/sleepcont.c -------------------------------------------------------------------------------- /libs/libmf/source/standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/standby.c -------------------------------------------------------------------------------- /libs/libmf/source/uartinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/uartinit.c -------------------------------------------------------------------------------- /libs/libmf/source/uartstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/uartstop.c -------------------------------------------------------------------------------- /libs/libmf/source/uarttimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/uarttimer.c -------------------------------------------------------------------------------- /libs/libmf/source/wrnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wrnum.h -------------------------------------------------------------------------------- /libs/libmf/source/wrnum16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wrnum16.c -------------------------------------------------------------------------------- /libs/libmf/source/wrnum32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wrnum32.c -------------------------------------------------------------------------------- /libs/libmf/source/wt01rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt01rem.c -------------------------------------------------------------------------------- /libs/libmf/source/wt0adda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt0adda.c -------------------------------------------------------------------------------- /libs/libmf/source/wt0addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt0addr.c -------------------------------------------------------------------------------- /libs/libmf/source/wt0curt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt0curt.c -------------------------------------------------------------------------------- /libs/libmf/source/wt0rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt0rem.c -------------------------------------------------------------------------------- /libs/libmf/source/wt0setcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt0setcfg.c -------------------------------------------------------------------------------- /libs/libmf/source/wt1adda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt1adda.c -------------------------------------------------------------------------------- /libs/libmf/source/wt1addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt1addr.c -------------------------------------------------------------------------------- /libs/libmf/source/wt1curt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt1curt.c -------------------------------------------------------------------------------- /libs/libmf/source/wt1rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt1rem.c -------------------------------------------------------------------------------- /libs/libmf/source/wt1setcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wt1setcfg.c -------------------------------------------------------------------------------- /libs/libmf/source/wtcbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wtcbadd.c -------------------------------------------------------------------------------- /libs/libmf/source/wtcbrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wtcbrem.c -------------------------------------------------------------------------------- /libs/libmf/source/wtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wtimer.c -------------------------------------------------------------------------------- /libs/libmf/source/wtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wtimer.h -------------------------------------------------------------------------------- /libs/libmf/source/wtrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wtrem.c -------------------------------------------------------------------------------- /libs/libmf/source/wtstdby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/libmf/source/wtstdby.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/ANNOUNCE -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/BUGS -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/Bmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/Bmakefile -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/CONTRIBUTORS -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/COPYING -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/COPYING.LIB -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/ChangeLog -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/FAQ -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/GNUmakefile -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/MAINTAINERS -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/Makefile -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/NEWS -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/Nmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/Nmakefile -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/PROGRESS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/PROGRESS -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/README -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/README.Borland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/README.Borland -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/README.CV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/README.CV -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/README.Watcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/README.Watcom -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/README.WinCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/README.WinCE -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/TODO -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/WinCE-PORT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/WinCE-PORT -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/attr.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/autostatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/autostatic.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/barrier.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/builddmc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/builddmc.bat -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/cancel.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/cleanup.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/condvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/condvar.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/config.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/context.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/create.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/dll.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/errno.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/exit.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/fork.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/global.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/implement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/implement.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/libpthreadGC2.stamp: -------------------------------------------------------------------------------- 1 | touched 2 | -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/misc.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/mutex.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/need_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/need_errno.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/nonportable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/nonportable.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/private.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread.dsp -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread.dsw -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread_exit.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread_join.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread_kill.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread_once.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/pthread_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/pthread_self.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/ptw32_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/ptw32_calloc.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/ptw32_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/ptw32_new.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/ptw32_reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/ptw32_reuse.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/ptw32_throw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/ptw32_throw.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/rwlock.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sched.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sched.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sched_yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sched_yield.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_close.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_destroy.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_getvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_getvalue.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_init.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_open.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_post.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_trywait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_trywait.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_unlink.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sem_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sem_wait.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/semaphore.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/semaphore.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/signal.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/spin.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/sync.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/Makefile -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/README -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/SIZES.GC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/SIZES.GC -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/SIZES.VC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/SIZES.VC -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/count1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/count1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/delay1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/delay1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/delay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/delay2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/equal1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/equal1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/errno1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/errno1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/exit1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/exit1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/exit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/exit2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/exit3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/exit3.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/exit4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/exit4.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/exit5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/exit5.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/eyal1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/eyal1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/join0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/join0.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/join1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/join1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/join2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/join2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/join3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/join3.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/kill1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/kill1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex3.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex4.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex5.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex6.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex7.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/mutex8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/mutex8.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/once1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/once1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/once2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/once2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/once3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/once3.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/once4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/once4.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/reuse1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/reuse1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/reuse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/reuse2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/self1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/self1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/self2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/self2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/sizes.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/spin1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/spin1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/spin2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/spin2.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/spin3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/spin3.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/spin4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/spin4.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/test.h -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tests/tsd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tests/tsd1.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/tsd.c -------------------------------------------------------------------------------- /libs/pthreads-w32-2-9-1-release/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/pthreads-w32-2-9-1-release/version.rc -------------------------------------------------------------------------------- /libs/wiringPi/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/COPYING.LESSER -------------------------------------------------------------------------------- /libs/wiringPi/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/INSTALL -------------------------------------------------------------------------------- /libs/wiringPi/People: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/People -------------------------------------------------------------------------------- /libs/wiringPi/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/README.TXT -------------------------------------------------------------------------------- /libs/wiringPi/VERSION: -------------------------------------------------------------------------------- 1 | 2.44 2 | -------------------------------------------------------------------------------- /libs/wiringPi/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/build -------------------------------------------------------------------------------- /libs/wiringPi/debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/.gitignore -------------------------------------------------------------------------------- /libs/wiringPi/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/changelog -------------------------------------------------------------------------------- /libs/wiringPi/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /libs/wiringPi/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/control -------------------------------------------------------------------------------- /libs/wiringPi/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/copyright -------------------------------------------------------------------------------- /libs/wiringPi/debian/libwiringpi-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | usr/include 3 | -------------------------------------------------------------------------------- /libs/wiringPi/debian/libwiringpi2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/libwiringpi2.install -------------------------------------------------------------------------------- /libs/wiringPi/debian/libwiringpi2.shlibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/libwiringpi2.shlibs -------------------------------------------------------------------------------- /libs/wiringPi/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/rules -------------------------------------------------------------------------------- /libs/wiringPi/debian/wiringpi.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /libs/wiringPi/debian/wiringpi.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/debian/wiringpi.install -------------------------------------------------------------------------------- /libs/wiringPi/devLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/devLib/ds1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/ds1302.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/ds1302.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/ds1302.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/font.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/gertboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/gertboard.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/gertboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/gertboard.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/lcd.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/lcd.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/lcd128x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/lcd128x64.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/lcd128x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/lcd128x64.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/libwiringPiDev.so.2.44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/libwiringPiDev.so.2.44 -------------------------------------------------------------------------------- /libs/wiringPi/devLib/maxdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/maxdetect.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/maxdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/maxdetect.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/piFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/piFace.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/piFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/piFace.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/piFaceOld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/piFaceOld.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/piGlow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/piGlow.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/piGlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/piGlow.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/piNes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/piNes.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/piNes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/piNes.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/scrollPhat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/scrollPhat.c -------------------------------------------------------------------------------- /libs/wiringPi/devLib/scrollPhat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/scrollPhat.h -------------------------------------------------------------------------------- /libs/wiringPi/devLib/scrollPhatFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/devLib/scrollPhatFont.h -------------------------------------------------------------------------------- /libs/wiringPi/examples/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/COPYING.LESSER -------------------------------------------------------------------------------- /libs/wiringPi/examples/Gertboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/Gertboard/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/examples/Gertboard/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/Gertboard/buttons.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/Gertboard/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/Gertboard/record.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/Gertboard/vumeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/Gertboard/vumeter.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiFace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiFace/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiFace/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiFace/blink.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiFace/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiFace/buttons.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiFace/ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiFace/ladder.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiFace/metro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiFace/metro.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiFace/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiFace/motor.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiFace/reaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiFace/reaction.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiGlow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiGlow/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiGlow/piGlow0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiGlow/piGlow0.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiGlow/piGlow1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiGlow/piGlow1.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/PiGlow/piglow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/PiGlow/piglow.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/README.TXT -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink.rtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink.rtb -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink.sh -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink12.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink12drcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink12drcs.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink6drcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink6drcs.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink8-drcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink8-drcn.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/blink8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/blink8.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/clock.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/delayTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/delayTest.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/ds1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/ds1302.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/header.h -------------------------------------------------------------------------------- /libs/wiringPi/examples/isr-osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/isr-osc.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/isr.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/lcd-adafruit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/lcd-adafruit.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/lcd.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/lowPower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/lowPower.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/max31855.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/max31855.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/nes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/nes.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/okLed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/okLed.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/pwm.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/binary.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/blink-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/blink-io.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/blink.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/blink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/blink.sh -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/bright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/bright.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/button.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/q2w/volts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/q2w/volts.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/rht03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/rht03.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/scrollPhat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/scrollPhat/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/examples/scrollPhat/scphat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/scrollPhat/scphat.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/scrollPhat/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/scrollPhat/test.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/serialRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/serialRead.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/serialTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/serialTest.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/servo.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/softPwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/softPwm.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/softTone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/softTone.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/speed.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/spiSpeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/spiSpeed.c -------------------------------------------------------------------------------- /libs/wiringPi/examples/wfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/examples/wfi.c -------------------------------------------------------------------------------- /libs/wiringPi/gpio/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/COPYING.LESSER -------------------------------------------------------------------------------- /libs/wiringPi/gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/gpio/gpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/gpio -------------------------------------------------------------------------------- /libs/wiringPi/gpio/gpio.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/gpio.1 -------------------------------------------------------------------------------- /libs/wiringPi/gpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/gpio.c -------------------------------------------------------------------------------- /libs/wiringPi/gpio/pins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/pins.c -------------------------------------------------------------------------------- /libs/wiringPi/gpio/pintest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/pintest -------------------------------------------------------------------------------- /libs/wiringPi/gpio/readall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/readall.c -------------------------------------------------------------------------------- /libs/wiringPi/gpio/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/gpio/test.sh -------------------------------------------------------------------------------- /libs/wiringPi/newVersion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/newVersion -------------------------------------------------------------------------------- /libs/wiringPi/pins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/pins/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/pins/pins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/pins/pins.pdf -------------------------------------------------------------------------------- /libs/wiringPi/pins/pins.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/pins/pins.tex -------------------------------------------------------------------------------- /libs/wiringPi/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/update -------------------------------------------------------------------------------- /libs/wiringPi/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/version.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/COPYING.LESSER -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/ads1115.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/ads1115.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/ads1115.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/ads1115.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/bmp180.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/bmp180.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/bmp180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/bmp180.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/drcNet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/drcNet.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/drcNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/drcNet.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/drcSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/drcSerial.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/drcSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/drcSerial.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/ds18b20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/ds18b20.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/ds18b20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/ds18b20.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/htu21d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/htu21d.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/htu21d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/htu21d.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/libwiringPi.so.2.44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/libwiringPi.so.2.44 -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/max31855.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/max31855.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/max31855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/max31855.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/max5322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/max5322.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/max5322.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/max5322.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23008.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23008.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23016.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23016.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23016reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23016reg.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23017.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23017.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23s08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23s08.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23s08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23s08.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23s17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23s17.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23s17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23s17.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23x08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23x08.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp23x0817.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp23x0817.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp3002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp3002.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp3002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp3002.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp3004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp3004.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp3004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp3004.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp3422.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp3422.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp3422.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp3422.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp4802.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp4802.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/mcp4802.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/mcp4802.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/pcf8574.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/pcf8574.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/pcf8574.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/pcf8574.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/pcf8591.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/pcf8591.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/pcf8591.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/pcf8591.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/piHiPri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/piHiPri.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/piThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/piThread.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/pseudoPins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/pseudoPins.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/pseudoPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/pseudoPins.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/rht03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/rht03.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/rht03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/rht03.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/sn3218.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/sn3218.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/sn3218.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/sn3218.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/softPwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/softPwm.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/softPwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/softPwm.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/softServo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/softServo.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/softServo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/softServo.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/softTone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/softTone.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/softTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/softTone.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/sr595.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/sr595.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/sr595.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/sr595.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringPi.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringPi.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringPiI2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringPiI2C.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringPiI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringPiI2C.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringPiSPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringPiSPI.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringPiSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringPiSPI.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringSerial.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringSerial.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringShift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringShift.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wiringShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wiringShift.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wpiExtensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wpiExtensions.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPi/wpiExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPi/wpiExtensions.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/Makefile -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/daemonise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/daemonise.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/daemonise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/daemonise.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/drcNetCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/drcNetCmd.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/network.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/network.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/runRemote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/runRemote.c -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/runRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/runRemote.h -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/wiringpid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/wiringpid -------------------------------------------------------------------------------- /libs/wiringPi/wiringPiD/wiringpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/libs/wiringPi/wiringPiD/wiringpid.c -------------------------------------------------------------------------------- /piglatin/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/piglatin/.cproject -------------------------------------------------------------------------------- /piglatin/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /piglatin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/piglatin/.project -------------------------------------------------------------------------------- /piglatin/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/piglatin/.settings/language.settings.xml -------------------------------------------------------------------------------- /piglatin/piglatin_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/piglatin/piglatin_main.c -------------------------------------------------------------------------------- /qucs/AX5043_prj/Balun.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/qucs/AX5043_prj/Balun.dat -------------------------------------------------------------------------------- /qucs/AX5043_prj/Balun.dpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qucs/AX5043_prj/Balun169.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/qucs/AX5043_prj/Balun169.sch -------------------------------------------------------------------------------- /qucs/AX5043_prj/Balun433.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/qucs/AX5043_prj/Balun433.sch -------------------------------------------------------------------------------- /qucs/AX5043_prj/Balun470.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/qucs/AX5043_prj/Balun470.sch -------------------------------------------------------------------------------- /qucs/AX5043_prj/Balun900.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/qucs/AX5043_prj/Balun900.sch -------------------------------------------------------------------------------- /receive/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/receive/.cproject -------------------------------------------------------------------------------- /receive/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /receive/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/receive/.project -------------------------------------------------------------------------------- /receive/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/receive/.settings/language.settings.xml -------------------------------------------------------------------------------- /receive/receive_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/receive/receive_main.c -------------------------------------------------------------------------------- /sandbox/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/sandbox/.cproject -------------------------------------------------------------------------------- /sandbox/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /sandbox/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/sandbox/.project -------------------------------------------------------------------------------- /sandbox/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/sandbox/.settings/language.settings.xml -------------------------------------------------------------------------------- /sandbox/sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/sandbox/sandbox.c -------------------------------------------------------------------------------- /transmit/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/transmit/.cproject -------------------------------------------------------------------------------- /transmit/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /transmit/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/transmit/.project -------------------------------------------------------------------------------- /transmit/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/transmit/.settings/language.settings.xml -------------------------------------------------------------------------------- /transmit/transmit_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/transmit/transmit_main.c -------------------------------------------------------------------------------- /transmit2freq/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/transmit2freq/.cproject -------------------------------------------------------------------------------- /transmit2freq/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /transmit2freq/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/transmit2freq/.project -------------------------------------------------------------------------------- /transmit2freq/transmit2freq_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrandenburgTech/DigitalTxRxRPi/HEAD/transmit2freq/transmit2freq_main.c --------------------------------------------------------------------------------