├── LICENSE ├── README.md ├── ath-hs-uart ├── Makefile └── src │ ├── 934x.h │ ├── Makefile │ ├── ar933x_uart.c │ ├── ar933x_uart_reg.c │ ├── ar934x_hs_uart.c │ ├── ar934x_hs_uart.h │ ├── ath-hs-uart.c │ ├── ath_hs-uart.c_orig │ ├── atheros.h │ └── calc_div.c ├── ath-i2s-qca ├── Makefile └── src │ ├── Kconfig │ ├── Makefile │ ├── ar71xx_regs.h │ ├── ath79-i2s-pll.c │ ├── ath79-i2s-pll.h │ ├── ath79-i2s.c │ ├── ath79-i2s.h │ ├── ath79-internal-codec.c │ ├── ath79-mbox.c │ ├── ath79-pcm.c │ ├── ath79-pcm.h │ ├── ath79.h │ ├── dev-audio.c │ ├── dev-audio.h │ ├── mach-ap135.c │ ├── mach-aph131.c │ ├── mach-cus227.c │ ├── mach-db120-tb388.c │ ├── mach-db120-vhyfi.c │ ├── mach-reh132.c │ ├── qca-cus227.c │ └── qca-db120.c ├── ath-i2s ├── Makefile ├── README.md └── src │ ├── 934x.h │ ├── Makefile │ ├── ath_i2s.c │ ├── ath_i2s.h │ ├── atheros.h │ ├── bit-serialization.c │ ├── bit-serialization.h │ ├── bit_serial.c_ │ ├── bit_stream.c │ └── bit_stream.h ├── c2port-gpio ├── Makefile ├── README.md ├── doc │ └── links.txt ├── results │ └── results.txt └── src │ ├── Kconfig │ ├── Makefile │ ├── c2port-core.c │ ├── c2port-gpio.c │ └── hex2image.c ├── c2t-module ├── Makefile ├── README.md └── src │ ├── Kconfig │ ├── Makefile │ ├── c2tool-gpio.c │ └── c2tool-gpio.h ├── c2t-new ├── Makefile ├── README.md ├── files │ └── c2.sh └── src │ ├── Makefile │ ├── c2family.c │ ├── c2family.h │ ├── c2interface.c │ ├── c2interface.h │ ├── c2tool-gpio.h │ ├── c2tool.c │ ├── c2tool.h │ ├── dump.c │ ├── erase.c │ ├── flash.c │ ├── hexdump.c │ ├── hexdump.h │ ├── info.c │ ├── reset.c │ ├── verify.c │ ├── version.c │ └── version.sh ├── c2tool ├── Makefile ├── README.md ├── pic-strobe │ ├── Makefile │ └── main.c └── src │ ├── Makefile │ ├── c2family.c │ ├── c2family.h │ ├── c2interface.c │ ├── c2interface.h │ ├── c2tool.c │ ├── c2tool.h │ ├── dump.c │ ├── erase.c │ ├── flash.c │ ├── hexdump.c │ ├── hexdump.h │ ├── info.c │ ├── reset.c │ ├── verify.c │ ├── version.c │ └── version.sh ├── carambola_i2c_test ├── Makefile └── src │ ├── Kconfig │ ├── Makefile │ ├── i2c-algo-gpio-test.c │ ├── i2c-core.c │ ├── i2c-core.h │ └── i2c-ralink.c ├── dt ├── Makefile_package_kernel_dtc └── files │ ├── bpi-spi0.dtso │ ├── h3-i2c.dtso │ ├── h3-spi.dtso │ └── overlay ├── dtoverlay ├── Makefile └── src │ ├── Makefile │ ├── Makefile.libfdt │ ├── TODO │ ├── dtmerge.c │ ├── dtoverlay.h │ ├── dtoverlay_main.c │ ├── lib │ ├── Makefile │ ├── fdt.c │ ├── fdt.h │ ├── fdt_empty_tree.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt.h │ ├── libfdt_env.h │ └── libfdt_internal.h │ ├── libfdt.h │ ├── libfdt_env.h │ ├── libfdt_internal.h │ ├── utils.c │ ├── utils.h │ └── version.lds ├── eepro100-diag ├── Makefile └── src │ ├── Makefile │ └── eepro100-diag.c ├── fbtft ├── README.md ├── fbtft.mk └── old │ ├── Makefile │ ├── files │ ├── CARAMBOLA.dts │ └── setup_fb.sh │ └── src │ ├── Kconfig │ ├── Makefile │ ├── README │ ├── edid.h │ ├── fb-puv3.c │ ├── fb_bd663474.c │ ├── fb_ddc.c │ ├── fb_defio.c │ ├── fb_draw.h │ ├── fb_hx8340bn.c │ ├── fb_hx8347d.c │ ├── fb_hx8353d.c │ ├── fb_ili9320.c │ ├── fb_ili9325.c │ ├── fb_ili9340.c │ ├── fb_ili9341.c │ ├── fb_ili9486.c │ ├── fb_notify.c │ ├── fb_pcd8544.c │ ├── fb_ra8875.c │ ├── fb_s6d02a1.c │ ├── fb_s6d1121.c │ ├── fb_ssd1289.c │ ├── fb_ssd1306.c │ ├── fb_ssd1331.c │ ├── fb_ssd1351.c │ ├── fb_st7735r.c │ ├── fb_sys_fops.c │ ├── fb_sys_fops.mod.c │ ├── fb_tinylcd.c │ ├── fb_upd161704.c │ ├── fb_watterott.c │ ├── fbcmap.c │ ├── fbcvt.c │ ├── fbmem.c │ ├── fbmon.c │ ├── fbsysfs.c │ ├── fbtft-bus.c │ ├── fbtft-core.c │ ├── fbtft-io.c │ ├── fbtft-sysfs.c │ ├── fbtft.h │ ├── fbtft_device.c │ ├── flexfb.c │ ├── modedb.c │ ├── syscopyarea.c │ ├── sysfillrect.c │ └── sysimgblt.c ├── flashrom-spi └── Makefile ├── framebuffer_llp ├── Makefile ├── README.md └── src │ ├── Lindent │ ├── Makefile │ ├── fbfire.c │ ├── fbtest_01.c │ ├── fbtest_02.c │ ├── fbtest_03.c │ ├── fbtest_04.c │ ├── fbtest_05.c │ ├── fbtest_06.c │ ├── fbtest_07.c │ └── fbtest_08.c ├── gpio-proxy-module ├── Makefile ├── README.md └── src │ ├── Makefile │ └── gpio-proxy.c ├── gpio-proxyd ├── Makefile ├── README.md ├── examples │ ├── gpio.py │ ├── hd44780.py │ └── led.py ├── files │ └── gpio-proxyd.init └── src │ ├── Makefile │ └── gpio-proxyd.c ├── gpio-test ├── Makefile ├── README.md └── src │ ├── Makefile │ ├── can.mk_diff │ ├── gpio-hw-irq-latency-test.c │ ├── gpio-irq-latency-test.c │ ├── gpio-irq-test.c │ ├── gpio-test.c │ ├── gpio-toggle-api-test.c │ ├── gpio-toggle-test.c │ ├── gpio-toggle-test_p.s │ ├── patches-3.10 │ ├── 728-MIPS-ath79-add-gpio-irq.patch │ ├── 800-MIPS-carambola2-mcp2515.patch │ ├── 800-MIPS-elink-mini-mcp2515.patch │ └── 800-MIPS-spi-cs3.patch │ ├── patches-3.14 │ ├── 728-MIPS-ath79-add-gpio-irq.patch │ ├── 800-MIPS-carambola2-mcp2515.patch │ ├── 800-MIPS-elink-mini-mcp2515.patch │ ├── 800-MIPS-spi-cs3.patch │ └── 810-mcp251x_irq_state.patch │ └── patches-3.18 │ ├── 728-MIPS-ath79-add-gpio-irq.patch │ └── 739-MIPS-ath79-add-gpio-irq-support.patch ├── gputils └── Makefile ├── io ├── Makefile └── src │ └── io.c ├── libsml └── Makefile ├── mcp2515-banged ├── Makefile ├── README.md ├── pictures │ ├── mcp2515_b_dlc_a_01.png │ ├── mcp2515_b_perf_03.png │ └── mcp2515_b_perf_04.png └── src │ ├── Makefile │ ├── drivertest.c │ ├── mcp2515-banged.c │ ├── mcp2515-banged_gpio-api.c │ ├── mcp2515-banged_rt3052-raw.c │ └── xyz_can.c ├── mcp2515-rpi-spi ├── Makefile ├── README.md └── src │ ├── Lindent │ ├── Makefile │ ├── mcp2515-rpi-spi.c │ ├── mcp2515-rpi-spi.c~ │ └── spi-bcm2835.c ├── mcp2515-usb ├── Makefile ├── README.md └── src │ ├── Lindent │ ├── Makefile │ └── mcp2515-usb.c ├── mcp25xxfd ├── Makefile ├── README.md ├── overlays │ ├── mcp2517fd-can0.dtbo │ └── mcp2517fd-can1.dtbo └── src │ ├── Lindent │ ├── Makefile │ └── mcp25xxfd.c ├── micro-proxy ├── AUTHORS ├── COPYING ├── LICENSE ├── Makefile ├── README.md └── src │ ├── Makefile │ └── proxy.c ├── omega2-ctrl ├── LICENSE ├── Makefile ├── README.md └── src │ ├── Lindent │ ├── Makefile │ ├── gpiomux.c │ ├── gpiomux.h │ ├── main.c │ ├── main.h │ ├── omega2_ctrl_types.h │ ├── refclk.c │ └── refclk.h ├── parted ├── Makefile ├── patches │ └── parted-3.2-devmapper-1.patch └── resize │ ├── README.md │ └── resize.sh ├── renesas-flashtool ├── Makefile └── src │ ├── COPYING3 │ ├── Makefile │ ├── Makefile.mingw │ ├── console.c │ ├── console.h │ ├── d2xx.c │ ├── eeprom.c │ ├── elf.h │ ├── factory-eeprom │ ├── gr8c-eeprom │ ├── grx-eeprom │ ├── ieee695.h │ ├── libftdi.c │ ├── mflash.c │ ├── mflash.h │ ├── read_elf.c │ ├── read_ieee695.c │ ├── read_srec.c │ ├── rx.c │ ├── rxlib.c │ ├── rxlib.h │ ├── rxusb.c │ ├── serial.c │ └── serial.h ├── show-audio-pll ├── Makefile ├── README.md └── src │ ├── 934x.h │ ├── Makefile │ ├── compiler.h │ ├── libmmio.c │ ├── mmio.h │ ├── show-audio-pll.c │ ├── show-audio-pll.h │ ├── strbuf.c │ ├── strbuf.h │ ├── utils.c │ └── utils.h ├── show_gpio ├── Makefile ├── README.md └── src │ ├── Makefile │ ├── compiler.h │ ├── libmmio.c │ ├── mmio.h │ ├── show-gpio.c │ ├── show-gpio.h │ ├── strbuf.c │ ├── strbuf.h │ ├── utils.c │ └── utils.h ├── simple-com ├── Makefile └── src │ ├── Makefile │ └── com.c ├── sml-snmp-agent ├── Makefile ├── README.md ├── files │ ├── cacti_graph_template_sml_power_meter.xml │ └── sml_server.init ├── pictures │ ├── IMG_7573.JPG │ ├── IMG_7573_s.JPG │ ├── IMG_7578.JPG │ ├── IMG_7578_s.JPG │ ├── adapter.png │ ├── cacti.png │ └── libehz-leser.jpg └── src │ ├── Makefile │ ├── sml │ ├── Makefile │ ├── include │ │ └── sml │ │ │ ├── sml_attention_response.h │ │ │ ├── sml_boolean.h │ │ │ ├── sml_close_request.h │ │ │ ├── sml_close_response.h │ │ │ ├── sml_crc16.h │ │ │ ├── sml_file.h │ │ │ ├── sml_get_list_request.h │ │ │ ├── sml_get_list_response.h │ │ │ ├── sml_get_proc_parameter_request.h │ │ │ ├── sml_get_proc_parameter_response.h │ │ │ ├── sml_get_profile_list_request.h │ │ │ ├── sml_get_profile_list_response.h │ │ │ ├── sml_get_profile_pack_request.h │ │ │ ├── sml_get_profile_pack_response.h │ │ │ ├── sml_list.h │ │ │ ├── sml_message.h │ │ │ ├── sml_number.h │ │ │ ├── sml_octet_string.h │ │ │ ├── sml_open_request.h │ │ │ ├── sml_open_response.h │ │ │ ├── sml_set_proc_parameter_request.h │ │ │ ├── sml_shared.h │ │ │ ├── sml_status.h │ │ │ ├── sml_time.h │ │ │ ├── sml_transport.h │ │ │ ├── sml_tree.h │ │ │ └── sml_value.h │ ├── lib │ │ └── .gitdir │ └── src │ │ ├── Makefile │ │ ├── include │ │ └── sml │ │ │ ├── sml_attention_response.h │ │ │ ├── sml_boolean.h │ │ │ ├── sml_close_request.h │ │ │ ├── sml_close_response.h │ │ │ ├── sml_crc16.h │ │ │ ├── sml_file.h │ │ │ ├── sml_get_list_request.h │ │ │ ├── sml_get_list_response.h │ │ │ ├── sml_get_proc_parameter_request.h │ │ │ ├── sml_get_proc_parameter_response.h │ │ │ ├── sml_get_profile_list_request.h │ │ │ ├── sml_get_profile_list_response.h │ │ │ ├── sml_get_profile_pack_request.h │ │ │ ├── sml_get_profile_pack_response.h │ │ │ ├── sml_list.h │ │ │ ├── sml_message.h │ │ │ ├── sml_number.h │ │ │ ├── sml_octet_string.h │ │ │ ├── sml_open_request.h │ │ │ ├── sml_open_response.h │ │ │ ├── sml_set_proc_parameter_request.h │ │ │ ├── sml_shared.h │ │ │ ├── sml_status.h │ │ │ ├── sml_time.h │ │ │ ├── sml_transport.h │ │ │ ├── sml_tree.h │ │ │ └── sml_value.h │ │ ├── lib │ │ └── .gitdir │ │ ├── sml_attention_response.c │ │ ├── sml_boolean.c │ │ ├── sml_close_request.c │ │ ├── sml_close_response.c │ │ ├── sml_crc16.c │ │ ├── sml_file.c │ │ ├── sml_get_list_request.c │ │ ├── sml_get_list_response.c │ │ ├── sml_get_proc_parameter_request.c │ │ ├── sml_get_proc_parameter_response.c │ │ ├── sml_get_profile_list_request.c │ │ ├── sml_get_profile_list_response.c │ │ ├── sml_get_profile_pack_request.c │ │ ├── sml_get_profile_pack_response.c │ │ ├── sml_list.c │ │ ├── sml_message.c │ │ ├── sml_number.c │ │ ├── sml_octet_string.c │ │ ├── sml_open_request.c │ │ ├── sml_open_response.c │ │ ├── sml_set_proc_parameter_request.c │ │ ├── sml_shared.c │ │ ├── sml_status.c │ │ ├── sml_time.c │ │ ├── sml_transport.c │ │ ├── sml_tree.c │ │ └── sml_value.c │ ├── sml_server.c │ ├── sml_server.h │ ├── sml_snmp.c │ ├── snmp.c │ ├── snmp.h │ └── test │ └── edl21.dat ├── spi-config-cs ├── Makefile └── src │ └── Makefile ├── srseI ├── 9900-spi_mcp251x.patch ├── CARAMBOLA.dts └── can.mk ├── sunxi-can ├── Makefile ├── README.md ├── can.mk ├── can.sh ├── doc │ └── CAN_Bus1.pdf ├── lcd │ ├── 0000-cover-letter.patch │ ├── 0001-can-sun4i-fix-overrun.patch │ ├── 0001-fix-overrun.patch │ ├── 0002-fix-loopback.patch │ ├── 800-dt-sun7i-add-can.patch │ ├── 801-dt-sun7i-add-can-bananapi.patch │ ├── 802-dt-sun7i-add-can-bananapro.patch │ ├── 803-dt-sun7i-uart-0-2-3-bananapi.patch │ ├── 804-dt-sun7i-no-spi-bananapi.patch │ ├── 805-sun4i-can-loopback.patch │ ├── 805-sun4i-can-overrun.patch │ ├── 806-sun7i-gpio-irq.patch │ ├── 900-dt-sun7i-add-lcd-bananapi.patch │ ├── sun7i-a20-bananapi.dtb │ └── sun7i-a20-bananapi.dts ├── regs.md ├── src │ ├── Makefile │ ├── sun4i_can.c │ ├── sunxi_can.c │ └── sunxi_can.c_3.19+ ├── sun7i-a20-bananapi.dtb ├── sun7i-a20-bananapi.dts └── sun7i-a20.dtsi ├── sunxi ├── Makefile ├── ir.patch └── src │ ├── Makefile │ └── sunxi_candumper.c ├── u-boot_mod ├── README.md ├── uboot_for_tp-link_tl-wr841n_v8.bin └── uboot_for_tp-link_tl-wr841n_v8.md5 └── wiringbp-pi ├── .gitignore ├── COPYING.LESSER ├── INSTALL ├── Makefile ├── People ├── README.md ├── build ├── devLib ├── Makefile ├── ds1302.c ├── ds1302.h ├── font.h ├── gertboard.c ├── gertboard.h ├── lcd.c ├── lcd.h ├── lcd128x64.c ├── lcd128x64.h ├── maxdetect.c ├── maxdetect.h ├── piFace.c ├── piFace.h ├── piFaceOld.c ├── piGlow.c ├── piGlow.h ├── piNes.c └── piNes.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.c ├── clock.c ├── delayTest.c ├── ds1302.c ├── header.h ├── isr-osc.c ├── isr.c ├── lcd-adafruit.c ├── lcd.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 ├── serialRead.c ├── serialTest.c ├── servo.c ├── softPwm.c ├── softTone.c ├── speed.c └── wfi.c ├── gpio ├── COPYING.LESSER ├── Makefile ├── extensions.c ├── extensions.h ├── gpio.1 ├── gpio.c ├── pins.c ├── pintest ├── readall.c └── test.sh ├── pins ├── Makefile ├── pins.pdf └── pins.tex └── wiringPi ├── Makefile ├── drcSerial.c ├── drcSerial.h ├── 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 ├── 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 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/README.md -------------------------------------------------------------------------------- /ath-hs-uart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/Makefile -------------------------------------------------------------------------------- /ath-hs-uart/src/934x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/934x.h -------------------------------------------------------------------------------- /ath-hs-uart/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/Makefile -------------------------------------------------------------------------------- /ath-hs-uart/src/ar933x_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/ar933x_uart.c -------------------------------------------------------------------------------- /ath-hs-uart/src/ar933x_uart_reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/ar933x_uart_reg.c -------------------------------------------------------------------------------- /ath-hs-uart/src/ar934x_hs_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/ar934x_hs_uart.c -------------------------------------------------------------------------------- /ath-hs-uart/src/ar934x_hs_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/ar934x_hs_uart.h -------------------------------------------------------------------------------- /ath-hs-uart/src/ath-hs-uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/ath-hs-uart.c -------------------------------------------------------------------------------- /ath-hs-uart/src/ath_hs-uart.c_orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/ath_hs-uart.c_orig -------------------------------------------------------------------------------- /ath-hs-uart/src/atheros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/atheros.h -------------------------------------------------------------------------------- /ath-hs-uart/src/calc_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-hs-uart/src/calc_div.c -------------------------------------------------------------------------------- /ath-i2s-qca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/Makefile -------------------------------------------------------------------------------- /ath-i2s-qca/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/Kconfig -------------------------------------------------------------------------------- /ath-i2s-qca/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/Makefile -------------------------------------------------------------------------------- /ath-i2s-qca/src/ar71xx_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ar71xx_regs.h -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-i2s-pll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-i2s-pll.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-i2s-pll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-i2s-pll.h -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-i2s.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-i2s.h -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-internal-codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-internal-codec.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-mbox.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-pcm.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79-pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79-pcm.h -------------------------------------------------------------------------------- /ath-i2s-qca/src/ath79.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/ath79.h -------------------------------------------------------------------------------- /ath-i2s-qca/src/dev-audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/dev-audio.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/dev-audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/dev-audio.h -------------------------------------------------------------------------------- /ath-i2s-qca/src/mach-ap135.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/mach-ap135.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/mach-aph131.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/mach-aph131.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/mach-cus227.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/mach-cus227.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/mach-db120-tb388.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/mach-db120-tb388.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/mach-db120-vhyfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/mach-db120-vhyfi.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/mach-reh132.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/mach-reh132.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/qca-cus227.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/qca-cus227.c -------------------------------------------------------------------------------- /ath-i2s-qca/src/qca-db120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s-qca/src/qca-db120.c -------------------------------------------------------------------------------- /ath-i2s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/Makefile -------------------------------------------------------------------------------- /ath-i2s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/README.md -------------------------------------------------------------------------------- /ath-i2s/src/934x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/934x.h -------------------------------------------------------------------------------- /ath-i2s/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/Makefile -------------------------------------------------------------------------------- /ath-i2s/src/ath_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/ath_i2s.c -------------------------------------------------------------------------------- /ath-i2s/src/ath_i2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/ath_i2s.h -------------------------------------------------------------------------------- /ath-i2s/src/atheros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/atheros.h -------------------------------------------------------------------------------- /ath-i2s/src/bit-serialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/bit-serialization.c -------------------------------------------------------------------------------- /ath-i2s/src/bit-serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/bit-serialization.h -------------------------------------------------------------------------------- /ath-i2s/src/bit_serial.c_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/bit_serial.c_ -------------------------------------------------------------------------------- /ath-i2s/src/bit_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/bit_stream.c -------------------------------------------------------------------------------- /ath-i2s/src/bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/ath-i2s/src/bit_stream.h -------------------------------------------------------------------------------- /c2port-gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/Makefile -------------------------------------------------------------------------------- /c2port-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/README.md -------------------------------------------------------------------------------- /c2port-gpio/doc/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/doc/links.txt -------------------------------------------------------------------------------- /c2port-gpio/results/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/results/results.txt -------------------------------------------------------------------------------- /c2port-gpio/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/src/Kconfig -------------------------------------------------------------------------------- /c2port-gpio/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/src/Makefile -------------------------------------------------------------------------------- /c2port-gpio/src/c2port-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/src/c2port-core.c -------------------------------------------------------------------------------- /c2port-gpio/src/c2port-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/src/c2port-gpio.c -------------------------------------------------------------------------------- /c2port-gpio/src/hex2image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2port-gpio/src/hex2image.c -------------------------------------------------------------------------------- /c2t-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-module/Makefile -------------------------------------------------------------------------------- /c2t-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-module/README.md -------------------------------------------------------------------------------- /c2t-module/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-module/src/Kconfig -------------------------------------------------------------------------------- /c2t-module/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_C2TOOL_GPIO} += c2tool-gpio.o 2 | -------------------------------------------------------------------------------- /c2t-module/src/c2tool-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-module/src/c2tool-gpio.c -------------------------------------------------------------------------------- /c2t-module/src/c2tool-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-module/src/c2tool-gpio.h -------------------------------------------------------------------------------- /c2t-new/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/Makefile -------------------------------------------------------------------------------- /c2t-new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/README.md -------------------------------------------------------------------------------- /c2t-new/files/c2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/files/c2.sh -------------------------------------------------------------------------------- /c2t-new/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/Makefile -------------------------------------------------------------------------------- /c2t-new/src/c2family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/c2family.c -------------------------------------------------------------------------------- /c2t-new/src/c2family.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/c2family.h -------------------------------------------------------------------------------- /c2t-new/src/c2interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/c2interface.c -------------------------------------------------------------------------------- /c2t-new/src/c2interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/c2interface.h -------------------------------------------------------------------------------- /c2t-new/src/c2tool-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/c2tool-gpio.h -------------------------------------------------------------------------------- /c2t-new/src/c2tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/c2tool.c -------------------------------------------------------------------------------- /c2t-new/src/c2tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/c2tool.h -------------------------------------------------------------------------------- /c2t-new/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/dump.c -------------------------------------------------------------------------------- /c2t-new/src/erase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/erase.c -------------------------------------------------------------------------------- /c2t-new/src/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/flash.c -------------------------------------------------------------------------------- /c2t-new/src/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/hexdump.c -------------------------------------------------------------------------------- /c2t-new/src/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/hexdump.h -------------------------------------------------------------------------------- /c2t-new/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/info.c -------------------------------------------------------------------------------- /c2t-new/src/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/reset.c -------------------------------------------------------------------------------- /c2t-new/src/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/verify.c -------------------------------------------------------------------------------- /c2t-new/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/version.c -------------------------------------------------------------------------------- /c2t-new/src/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2t-new/src/version.sh -------------------------------------------------------------------------------- /c2tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/Makefile -------------------------------------------------------------------------------- /c2tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/README.md -------------------------------------------------------------------------------- /c2tool/pic-strobe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/pic-strobe/Makefile -------------------------------------------------------------------------------- /c2tool/pic-strobe/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/pic-strobe/main.c -------------------------------------------------------------------------------- /c2tool/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/Makefile -------------------------------------------------------------------------------- /c2tool/src/c2family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/c2family.c -------------------------------------------------------------------------------- /c2tool/src/c2family.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/c2family.h -------------------------------------------------------------------------------- /c2tool/src/c2interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/c2interface.c -------------------------------------------------------------------------------- /c2tool/src/c2interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/c2interface.h -------------------------------------------------------------------------------- /c2tool/src/c2tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/c2tool.c -------------------------------------------------------------------------------- /c2tool/src/c2tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/c2tool.h -------------------------------------------------------------------------------- /c2tool/src/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/dump.c -------------------------------------------------------------------------------- /c2tool/src/erase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/erase.c -------------------------------------------------------------------------------- /c2tool/src/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/flash.c -------------------------------------------------------------------------------- /c2tool/src/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/hexdump.c -------------------------------------------------------------------------------- /c2tool/src/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/hexdump.h -------------------------------------------------------------------------------- /c2tool/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/info.c -------------------------------------------------------------------------------- /c2tool/src/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/reset.c -------------------------------------------------------------------------------- /c2tool/src/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/verify.c -------------------------------------------------------------------------------- /c2tool/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/version.c -------------------------------------------------------------------------------- /c2tool/src/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/c2tool/src/version.sh -------------------------------------------------------------------------------- /carambola_i2c_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/carambola_i2c_test/Makefile -------------------------------------------------------------------------------- /carambola_i2c_test/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/carambola_i2c_test/src/Kconfig -------------------------------------------------------------------------------- /carambola_i2c_test/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/carambola_i2c_test/src/Makefile -------------------------------------------------------------------------------- /carambola_i2c_test/src/i2c-algo-gpio-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/carambola_i2c_test/src/i2c-algo-gpio-test.c -------------------------------------------------------------------------------- /carambola_i2c_test/src/i2c-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/carambola_i2c_test/src/i2c-core.c -------------------------------------------------------------------------------- /carambola_i2c_test/src/i2c-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/carambola_i2c_test/src/i2c-core.h -------------------------------------------------------------------------------- /carambola_i2c_test/src/i2c-ralink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/carambola_i2c_test/src/i2c-ralink.c -------------------------------------------------------------------------------- /dt/Makefile_package_kernel_dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dt/Makefile_package_kernel_dtc -------------------------------------------------------------------------------- /dt/files/bpi-spi0.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dt/files/bpi-spi0.dtso -------------------------------------------------------------------------------- /dt/files/h3-i2c.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dt/files/h3-i2c.dtso -------------------------------------------------------------------------------- /dt/files/h3-spi.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dt/files/h3-spi.dtso -------------------------------------------------------------------------------- /dt/files/overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dt/files/overlay -------------------------------------------------------------------------------- /dtoverlay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/Makefile -------------------------------------------------------------------------------- /dtoverlay/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/Makefile -------------------------------------------------------------------------------- /dtoverlay/src/Makefile.libfdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/Makefile.libfdt -------------------------------------------------------------------------------- /dtoverlay/src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/TODO -------------------------------------------------------------------------------- /dtoverlay/src/dtmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/dtmerge.c -------------------------------------------------------------------------------- /dtoverlay/src/dtoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/dtoverlay.h -------------------------------------------------------------------------------- /dtoverlay/src/dtoverlay_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/dtoverlay_main.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/Makefile -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt.h -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt_empty_tree.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt_ro.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt_rw.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt_strerror.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt_sw.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/fdt_wip.c -------------------------------------------------------------------------------- /dtoverlay/src/lib/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/libfdt.h -------------------------------------------------------------------------------- /dtoverlay/src/lib/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/libfdt_env.h -------------------------------------------------------------------------------- /dtoverlay/src/lib/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/lib/libfdt_internal.h -------------------------------------------------------------------------------- /dtoverlay/src/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/libfdt.h -------------------------------------------------------------------------------- /dtoverlay/src/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/libfdt_env.h -------------------------------------------------------------------------------- /dtoverlay/src/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/libfdt_internal.h -------------------------------------------------------------------------------- /dtoverlay/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/utils.c -------------------------------------------------------------------------------- /dtoverlay/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/utils.h -------------------------------------------------------------------------------- /dtoverlay/src/version.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/dtoverlay/src/version.lds -------------------------------------------------------------------------------- /eepro100-diag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/eepro100-diag/Makefile -------------------------------------------------------------------------------- /eepro100-diag/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/eepro100-diag/src/Makefile -------------------------------------------------------------------------------- /eepro100-diag/src/eepro100-diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/eepro100-diag/src/eepro100-diag.c -------------------------------------------------------------------------------- /fbtft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/README.md -------------------------------------------------------------------------------- /fbtft/fbtft.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/fbtft.mk -------------------------------------------------------------------------------- /fbtft/old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/Makefile -------------------------------------------------------------------------------- /fbtft/old/files/CARAMBOLA.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/files/CARAMBOLA.dts -------------------------------------------------------------------------------- /fbtft/old/files/setup_fb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/files/setup_fb.sh -------------------------------------------------------------------------------- /fbtft/old/src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/Kconfig -------------------------------------------------------------------------------- /fbtft/old/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/Makefile -------------------------------------------------------------------------------- /fbtft/old/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/README -------------------------------------------------------------------------------- /fbtft/old/src/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/edid.h -------------------------------------------------------------------------------- /fbtft/old/src/fb-puv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb-puv3.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_bd663474.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_bd663474.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ddc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ddc.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_defio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_defio.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_draw.h -------------------------------------------------------------------------------- /fbtft/old/src/fb_hx8340bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_hx8340bn.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_hx8347d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_hx8347d.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_hx8353d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_hx8353d.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ili9320.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ili9320.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ili9325.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ili9325.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ili9340.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ili9340.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ili9341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ili9341.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ili9486.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ili9486.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_notify.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_pcd8544.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_pcd8544.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ra8875.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ra8875.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_s6d02a1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_s6d02a1.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_s6d1121.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_s6d1121.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ssd1289.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ssd1289.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ssd1306.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ssd1306.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ssd1331.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ssd1331.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_ssd1351.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_ssd1351.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_st7735r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_st7735r.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_sys_fops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_sys_fops.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_sys_fops.mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_sys_fops.mod.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_tinylcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_tinylcd.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_upd161704.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_upd161704.c -------------------------------------------------------------------------------- /fbtft/old/src/fb_watterott.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fb_watterott.c -------------------------------------------------------------------------------- /fbtft/old/src/fbcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbcmap.c -------------------------------------------------------------------------------- /fbtft/old/src/fbcvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbcvt.c -------------------------------------------------------------------------------- /fbtft/old/src/fbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbmem.c -------------------------------------------------------------------------------- /fbtft/old/src/fbmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbmon.c -------------------------------------------------------------------------------- /fbtft/old/src/fbsysfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbsysfs.c -------------------------------------------------------------------------------- /fbtft/old/src/fbtft-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbtft-bus.c -------------------------------------------------------------------------------- /fbtft/old/src/fbtft-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbtft-core.c -------------------------------------------------------------------------------- /fbtft/old/src/fbtft-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbtft-io.c -------------------------------------------------------------------------------- /fbtft/old/src/fbtft-sysfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbtft-sysfs.c -------------------------------------------------------------------------------- /fbtft/old/src/fbtft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbtft.h -------------------------------------------------------------------------------- /fbtft/old/src/fbtft_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/fbtft_device.c -------------------------------------------------------------------------------- /fbtft/old/src/flexfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/flexfb.c -------------------------------------------------------------------------------- /fbtft/old/src/modedb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/modedb.c -------------------------------------------------------------------------------- /fbtft/old/src/syscopyarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/syscopyarea.c -------------------------------------------------------------------------------- /fbtft/old/src/sysfillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/sysfillrect.c -------------------------------------------------------------------------------- /fbtft/old/src/sysimgblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/fbtft/old/src/sysimgblt.c -------------------------------------------------------------------------------- /flashrom-spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/flashrom-spi/Makefile -------------------------------------------------------------------------------- /framebuffer_llp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/Makefile -------------------------------------------------------------------------------- /framebuffer_llp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/README.md -------------------------------------------------------------------------------- /framebuffer_llp/src/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/Lindent -------------------------------------------------------------------------------- /framebuffer_llp/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/Makefile -------------------------------------------------------------------------------- /framebuffer_llp/src/fbfire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbfire.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_01.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_02.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_03.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_04.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_05.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_06.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_07.c -------------------------------------------------------------------------------- /framebuffer_llp/src/fbtest_08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/framebuffer_llp/src/fbtest_08.c -------------------------------------------------------------------------------- /gpio-proxy-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxy-module/Makefile -------------------------------------------------------------------------------- /gpio-proxy-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxy-module/README.md -------------------------------------------------------------------------------- /gpio-proxy-module/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_GPIO_PROXY} += gpio-proxy.o 2 | 3 | -------------------------------------------------------------------------------- /gpio-proxy-module/src/gpio-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxy-module/src/gpio-proxy.c -------------------------------------------------------------------------------- /gpio-proxyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/Makefile -------------------------------------------------------------------------------- /gpio-proxyd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/README.md -------------------------------------------------------------------------------- /gpio-proxyd/examples/gpio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/examples/gpio.py -------------------------------------------------------------------------------- /gpio-proxyd/examples/hd44780.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/examples/hd44780.py -------------------------------------------------------------------------------- /gpio-proxyd/examples/led.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/examples/led.py -------------------------------------------------------------------------------- /gpio-proxyd/files/gpio-proxyd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/files/gpio-proxyd.init -------------------------------------------------------------------------------- /gpio-proxyd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/src/Makefile -------------------------------------------------------------------------------- /gpio-proxyd/src/gpio-proxyd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-proxyd/src/gpio-proxyd.c -------------------------------------------------------------------------------- /gpio-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/Makefile -------------------------------------------------------------------------------- /gpio-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/README.md -------------------------------------------------------------------------------- /gpio-test/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/Makefile -------------------------------------------------------------------------------- /gpio-test/src/can.mk_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/can.mk_diff -------------------------------------------------------------------------------- /gpio-test/src/gpio-hw-irq-latency-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/gpio-hw-irq-latency-test.c -------------------------------------------------------------------------------- /gpio-test/src/gpio-irq-latency-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/gpio-irq-latency-test.c -------------------------------------------------------------------------------- /gpio-test/src/gpio-irq-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/gpio-irq-test.c -------------------------------------------------------------------------------- /gpio-test/src/gpio-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/gpio-test.c -------------------------------------------------------------------------------- /gpio-test/src/gpio-toggle-api-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/gpio-toggle-api-test.c -------------------------------------------------------------------------------- /gpio-test/src/gpio-toggle-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/gpio-toggle-test.c -------------------------------------------------------------------------------- /gpio-test/src/gpio-toggle-test_p.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/gpio-toggle-test_p.s -------------------------------------------------------------------------------- /gpio-test/src/patches-3.10/728-MIPS-ath79-add-gpio-irq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.10/728-MIPS-ath79-add-gpio-irq.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.10/800-MIPS-carambola2-mcp2515.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.10/800-MIPS-carambola2-mcp2515.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.10/800-MIPS-elink-mini-mcp2515.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.10/800-MIPS-elink-mini-mcp2515.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.10/800-MIPS-spi-cs3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.10/800-MIPS-spi-cs3.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.14/728-MIPS-ath79-add-gpio-irq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.14/728-MIPS-ath79-add-gpio-irq.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.14/800-MIPS-carambola2-mcp2515.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.14/800-MIPS-carambola2-mcp2515.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.14/800-MIPS-elink-mini-mcp2515.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.14/800-MIPS-elink-mini-mcp2515.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.14/800-MIPS-spi-cs3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.14/800-MIPS-spi-cs3.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.14/810-mcp251x_irq_state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.14/810-mcp251x_irq_state.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.18/728-MIPS-ath79-add-gpio-irq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.18/728-MIPS-ath79-add-gpio-irq.patch -------------------------------------------------------------------------------- /gpio-test/src/patches-3.18/739-MIPS-ath79-add-gpio-irq-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gpio-test/src/patches-3.18/739-MIPS-ath79-add-gpio-irq-support.patch -------------------------------------------------------------------------------- /gputils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/gputils/Makefile -------------------------------------------------------------------------------- /io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/io/Makefile -------------------------------------------------------------------------------- /io/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/io/src/io.c -------------------------------------------------------------------------------- /libsml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/libsml/Makefile -------------------------------------------------------------------------------- /mcp2515-banged/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/Makefile -------------------------------------------------------------------------------- /mcp2515-banged/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/README.md -------------------------------------------------------------------------------- /mcp2515-banged/pictures/mcp2515_b_dlc_a_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/pictures/mcp2515_b_dlc_a_01.png -------------------------------------------------------------------------------- /mcp2515-banged/pictures/mcp2515_b_perf_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/pictures/mcp2515_b_perf_03.png -------------------------------------------------------------------------------- /mcp2515-banged/pictures/mcp2515_b_perf_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/pictures/mcp2515_b_perf_04.png -------------------------------------------------------------------------------- /mcp2515-banged/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/src/Makefile -------------------------------------------------------------------------------- /mcp2515-banged/src/drivertest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/src/drivertest.c -------------------------------------------------------------------------------- /mcp2515-banged/src/mcp2515-banged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/src/mcp2515-banged.c -------------------------------------------------------------------------------- /mcp2515-banged/src/mcp2515-banged_gpio-api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/src/mcp2515-banged_gpio-api.c -------------------------------------------------------------------------------- /mcp2515-banged/src/mcp2515-banged_rt3052-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/src/mcp2515-banged_rt3052-raw.c -------------------------------------------------------------------------------- /mcp2515-banged/src/xyz_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-banged/src/xyz_can.c -------------------------------------------------------------------------------- /mcp2515-rpi-spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-rpi-spi/Makefile -------------------------------------------------------------------------------- /mcp2515-rpi-spi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-rpi-spi/README.md -------------------------------------------------------------------------------- /mcp2515-rpi-spi/src/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-rpi-spi/src/Lindent -------------------------------------------------------------------------------- /mcp2515-rpi-spi/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_MCP2515_RPI_SPI} += mcp2515-rpi-spi.o 2 | -------------------------------------------------------------------------------- /mcp2515-rpi-spi/src/mcp2515-rpi-spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-rpi-spi/src/mcp2515-rpi-spi.c -------------------------------------------------------------------------------- /mcp2515-rpi-spi/src/mcp2515-rpi-spi.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-rpi-spi/src/mcp2515-rpi-spi.c~ -------------------------------------------------------------------------------- /mcp2515-rpi-spi/src/spi-bcm2835.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-rpi-spi/src/spi-bcm2835.c -------------------------------------------------------------------------------- /mcp2515-usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-usb/Makefile -------------------------------------------------------------------------------- /mcp2515-usb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-usb/README.md -------------------------------------------------------------------------------- /mcp2515-usb/src/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-usb/src/Lindent -------------------------------------------------------------------------------- /mcp2515-usb/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-usb/src/Makefile -------------------------------------------------------------------------------- /mcp2515-usb/src/mcp2515-usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp2515-usb/src/mcp2515-usb.c -------------------------------------------------------------------------------- /mcp25xxfd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp25xxfd/Makefile -------------------------------------------------------------------------------- /mcp25xxfd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp25xxfd/README.md -------------------------------------------------------------------------------- /mcp25xxfd/overlays/mcp2517fd-can0.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp25xxfd/overlays/mcp2517fd-can0.dtbo -------------------------------------------------------------------------------- /mcp25xxfd/overlays/mcp2517fd-can1.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp25xxfd/overlays/mcp2517fd-can1.dtbo -------------------------------------------------------------------------------- /mcp25xxfd/src/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp25xxfd/src/Lindent -------------------------------------------------------------------------------- /mcp25xxfd/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_MCP25XXFD} += mcp25xxfd.o 2 | -------------------------------------------------------------------------------- /mcp25xxfd/src/mcp25xxfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/mcp25xxfd/src/mcp25xxfd.c -------------------------------------------------------------------------------- /micro-proxy/AUTHORS: -------------------------------------------------------------------------------- 1 | Krzysztof Klis -------------------------------------------------------------------------------- /micro-proxy/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/micro-proxy/COPYING -------------------------------------------------------------------------------- /micro-proxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/micro-proxy/LICENSE -------------------------------------------------------------------------------- /micro-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/micro-proxy/Makefile -------------------------------------------------------------------------------- /micro-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/micro-proxy/README.md -------------------------------------------------------------------------------- /micro-proxy/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/micro-proxy/src/Makefile -------------------------------------------------------------------------------- /micro-proxy/src/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/micro-proxy/src/proxy.c -------------------------------------------------------------------------------- /omega2-ctrl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/LICENSE -------------------------------------------------------------------------------- /omega2-ctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/Makefile -------------------------------------------------------------------------------- /omega2-ctrl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/README.md -------------------------------------------------------------------------------- /omega2-ctrl/src/Lindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/Lindent -------------------------------------------------------------------------------- /omega2-ctrl/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/Makefile -------------------------------------------------------------------------------- /omega2-ctrl/src/gpiomux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/gpiomux.c -------------------------------------------------------------------------------- /omega2-ctrl/src/gpiomux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/gpiomux.h -------------------------------------------------------------------------------- /omega2-ctrl/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/main.c -------------------------------------------------------------------------------- /omega2-ctrl/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/main.h -------------------------------------------------------------------------------- /omega2-ctrl/src/omega2_ctrl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/omega2_ctrl_types.h -------------------------------------------------------------------------------- /omega2-ctrl/src/refclk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/refclk.c -------------------------------------------------------------------------------- /omega2-ctrl/src/refclk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/omega2-ctrl/src/refclk.h -------------------------------------------------------------------------------- /parted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/parted/Makefile -------------------------------------------------------------------------------- /parted/patches/parted-3.2-devmapper-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/parted/patches/parted-3.2-devmapper-1.patch -------------------------------------------------------------------------------- /parted/resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/parted/resize/README.md -------------------------------------------------------------------------------- /parted/resize/resize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/parted/resize/resize.sh -------------------------------------------------------------------------------- /renesas-flashtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/Makefile -------------------------------------------------------------------------------- /renesas-flashtool/src/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/COPYING3 -------------------------------------------------------------------------------- /renesas-flashtool/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/Makefile -------------------------------------------------------------------------------- /renesas-flashtool/src/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/Makefile.mingw -------------------------------------------------------------------------------- /renesas-flashtool/src/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/console.c -------------------------------------------------------------------------------- /renesas-flashtool/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/console.h -------------------------------------------------------------------------------- /renesas-flashtool/src/d2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/d2xx.c -------------------------------------------------------------------------------- /renesas-flashtool/src/eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/eeprom.c -------------------------------------------------------------------------------- /renesas-flashtool/src/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/elf.h -------------------------------------------------------------------------------- /renesas-flashtool/src/factory-eeprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/factory-eeprom -------------------------------------------------------------------------------- /renesas-flashtool/src/gr8c-eeprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/gr8c-eeprom -------------------------------------------------------------------------------- /renesas-flashtool/src/grx-eeprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/grx-eeprom -------------------------------------------------------------------------------- /renesas-flashtool/src/ieee695.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/ieee695.h -------------------------------------------------------------------------------- /renesas-flashtool/src/libftdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/libftdi.c -------------------------------------------------------------------------------- /renesas-flashtool/src/mflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/mflash.c -------------------------------------------------------------------------------- /renesas-flashtool/src/mflash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/mflash.h -------------------------------------------------------------------------------- /renesas-flashtool/src/read_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/read_elf.c -------------------------------------------------------------------------------- /renesas-flashtool/src/read_ieee695.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/read_ieee695.c -------------------------------------------------------------------------------- /renesas-flashtool/src/read_srec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/read_srec.c -------------------------------------------------------------------------------- /renesas-flashtool/src/rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/rx.c -------------------------------------------------------------------------------- /renesas-flashtool/src/rxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/rxlib.c -------------------------------------------------------------------------------- /renesas-flashtool/src/rxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/rxlib.h -------------------------------------------------------------------------------- /renesas-flashtool/src/rxusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/rxusb.c -------------------------------------------------------------------------------- /renesas-flashtool/src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/serial.c -------------------------------------------------------------------------------- /renesas-flashtool/src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/renesas-flashtool/src/serial.h -------------------------------------------------------------------------------- /show-audio-pll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/Makefile -------------------------------------------------------------------------------- /show-audio-pll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/README.md -------------------------------------------------------------------------------- /show-audio-pll/src/934x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/934x.h -------------------------------------------------------------------------------- /show-audio-pll/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/Makefile -------------------------------------------------------------------------------- /show-audio-pll/src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/compiler.h -------------------------------------------------------------------------------- /show-audio-pll/src/libmmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/libmmio.c -------------------------------------------------------------------------------- /show-audio-pll/src/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/mmio.h -------------------------------------------------------------------------------- /show-audio-pll/src/show-audio-pll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/show-audio-pll.c -------------------------------------------------------------------------------- /show-audio-pll/src/show-audio-pll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /show-audio-pll/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/strbuf.c -------------------------------------------------------------------------------- /show-audio-pll/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/strbuf.h -------------------------------------------------------------------------------- /show-audio-pll/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/utils.c -------------------------------------------------------------------------------- /show-audio-pll/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show-audio-pll/src/utils.h -------------------------------------------------------------------------------- /show_gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/Makefile -------------------------------------------------------------------------------- /show_gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/README.md -------------------------------------------------------------------------------- /show_gpio/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/Makefile -------------------------------------------------------------------------------- /show_gpio/src/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/compiler.h -------------------------------------------------------------------------------- /show_gpio/src/libmmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/libmmio.c -------------------------------------------------------------------------------- /show_gpio/src/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/mmio.h -------------------------------------------------------------------------------- /show_gpio/src/show-gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/show-gpio.c -------------------------------------------------------------------------------- /show_gpio/src/show-gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/show-gpio.h -------------------------------------------------------------------------------- /show_gpio/src/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/strbuf.c -------------------------------------------------------------------------------- /show_gpio/src/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/strbuf.h -------------------------------------------------------------------------------- /show_gpio/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/utils.c -------------------------------------------------------------------------------- /show_gpio/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/show_gpio/src/utils.h -------------------------------------------------------------------------------- /simple-com/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/simple-com/Makefile -------------------------------------------------------------------------------- /simple-com/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/simple-com/src/Makefile -------------------------------------------------------------------------------- /simple-com/src/com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/simple-com/src/com.c -------------------------------------------------------------------------------- /sml-snmp-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/Makefile -------------------------------------------------------------------------------- /sml-snmp-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/README.md -------------------------------------------------------------------------------- /sml-snmp-agent/files/cacti_graph_template_sml_power_meter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/files/cacti_graph_template_sml_power_meter.xml -------------------------------------------------------------------------------- /sml-snmp-agent/files/sml_server.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/files/sml_server.init -------------------------------------------------------------------------------- /sml-snmp-agent/pictures/IMG_7573.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/pictures/IMG_7573.JPG -------------------------------------------------------------------------------- /sml-snmp-agent/pictures/IMG_7573_s.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/pictures/IMG_7573_s.JPG -------------------------------------------------------------------------------- /sml-snmp-agent/pictures/IMG_7578.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/pictures/IMG_7578.JPG -------------------------------------------------------------------------------- /sml-snmp-agent/pictures/IMG_7578_s.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/pictures/IMG_7578_s.JPG -------------------------------------------------------------------------------- /sml-snmp-agent/pictures/adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/pictures/adapter.png -------------------------------------------------------------------------------- /sml-snmp-agent/pictures/cacti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/pictures/cacti.png -------------------------------------------------------------------------------- /sml-snmp-agent/pictures/libehz-leser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/pictures/libehz-leser.jpg -------------------------------------------------------------------------------- /sml-snmp-agent/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/Makefile -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/Makefile -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_attention_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_attention_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_boolean.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_close_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_close_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_close_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_close_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_crc16.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_file.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_list_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_list_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_list_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_list_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_proc_parameter_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_proc_parameter_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_proc_parameter_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_proc_parameter_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_profile_list_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_profile_list_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_profile_list_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_profile_list_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_profile_pack_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_profile_pack_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_get_profile_pack_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_get_profile_pack_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_list.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_message.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_number.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_octet_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_octet_string.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_open_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_open_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_open_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_open_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_set_proc_parameter_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_set_proc_parameter_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_shared.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_status.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_time.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_transport.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_tree.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/include/sml/sml_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/include/sml/sml_value.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/lib/.gitdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/Makefile -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_attention_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_attention_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_boolean.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_close_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_close_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_close_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_close_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_crc16.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_file.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_list_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_list_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_list_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_list_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_proc_parameter_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_proc_parameter_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_proc_parameter_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_proc_parameter_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_list_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_list_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_list_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_list_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_pack_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_pack_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_pack_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_get_profile_pack_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_list.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_message.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_number.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_octet_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_octet_string.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_open_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_open_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_open_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_open_response.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_set_proc_parameter_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_set_proc_parameter_request.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_shared.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_status.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_time.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_transport.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_tree.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/include/sml/sml_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/include/sml/sml_value.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/lib/.gitdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_attention_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_attention_response.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_boolean.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_close_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_close_request.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_close_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_close_response.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_crc16.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_file.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_list_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_list_request.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_list_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_list_response.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_proc_parameter_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_proc_parameter_request.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_proc_parameter_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_proc_parameter_response.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_profile_list_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_profile_list_request.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_profile_list_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_profile_list_response.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_profile_pack_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_profile_pack_request.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_get_profile_pack_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_get_profile_pack_response.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_list.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_message.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_number.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_octet_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_octet_string.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_open_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_open_request.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_open_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_open_response.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_set_proc_parameter_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_set_proc_parameter_request.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_shared.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_status.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_time.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_transport.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_tree.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml/src/sml_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml/src/sml_value.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml_server.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml_server.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/sml_snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/sml_snmp.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/snmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/snmp.c -------------------------------------------------------------------------------- /sml-snmp-agent/src/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/snmp.h -------------------------------------------------------------------------------- /sml-snmp-agent/src/test/edl21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sml-snmp-agent/src/test/edl21.dat -------------------------------------------------------------------------------- /spi-config-cs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/spi-config-cs/Makefile -------------------------------------------------------------------------------- /spi-config-cs/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/spi-config-cs/src/Makefile -------------------------------------------------------------------------------- /srseI/9900-spi_mcp251x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/srseI/9900-spi_mcp251x.patch -------------------------------------------------------------------------------- /srseI/CARAMBOLA.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/srseI/CARAMBOLA.dts -------------------------------------------------------------------------------- /srseI/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/srseI/can.mk -------------------------------------------------------------------------------- /sunxi-can/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/Makefile -------------------------------------------------------------------------------- /sunxi-can/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/README.md -------------------------------------------------------------------------------- /sunxi-can/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/can.mk -------------------------------------------------------------------------------- /sunxi-can/can.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/can.sh -------------------------------------------------------------------------------- /sunxi-can/doc/CAN_Bus1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/doc/CAN_Bus1.pdf -------------------------------------------------------------------------------- /sunxi-can/lcd/0000-cover-letter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/0000-cover-letter.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/0001-can-sun4i-fix-overrun.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/0001-can-sun4i-fix-overrun.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/0001-fix-overrun.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/0001-fix-overrun.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/0002-fix-loopback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/0002-fix-loopback.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/800-dt-sun7i-add-can.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/800-dt-sun7i-add-can.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/801-dt-sun7i-add-can-bananapi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/801-dt-sun7i-add-can-bananapi.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/802-dt-sun7i-add-can-bananapro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/802-dt-sun7i-add-can-bananapro.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/803-dt-sun7i-uart-0-2-3-bananapi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/803-dt-sun7i-uart-0-2-3-bananapi.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/804-dt-sun7i-no-spi-bananapi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/804-dt-sun7i-no-spi-bananapi.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/805-sun4i-can-loopback.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/805-sun4i-can-loopback.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/805-sun4i-can-overrun.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/805-sun4i-can-overrun.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/806-sun7i-gpio-irq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/806-sun7i-gpio-irq.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/900-dt-sun7i-add-lcd-bananapi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/900-dt-sun7i-add-lcd-bananapi.patch -------------------------------------------------------------------------------- /sunxi-can/lcd/sun7i-a20-bananapi.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/sun7i-a20-bananapi.dtb -------------------------------------------------------------------------------- /sunxi-can/lcd/sun7i-a20-bananapi.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/lcd/sun7i-a20-bananapi.dts -------------------------------------------------------------------------------- /sunxi-can/regs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/regs.md -------------------------------------------------------------------------------- /sunxi-can/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_SUNXI_CAN) += sunxi_can.o 2 | -------------------------------------------------------------------------------- /sunxi-can/src/sun4i_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/src/sun4i_can.c -------------------------------------------------------------------------------- /sunxi-can/src/sunxi_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/src/sunxi_can.c -------------------------------------------------------------------------------- /sunxi-can/src/sunxi_can.c_3.19+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/src/sunxi_can.c_3.19+ -------------------------------------------------------------------------------- /sunxi-can/sun7i-a20-bananapi.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/sun7i-a20-bananapi.dtb -------------------------------------------------------------------------------- /sunxi-can/sun7i-a20-bananapi.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/sun7i-a20-bananapi.dts -------------------------------------------------------------------------------- /sunxi-can/sun7i-a20.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi-can/sun7i-a20.dtsi -------------------------------------------------------------------------------- /sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi/Makefile -------------------------------------------------------------------------------- /sunxi/ir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi/ir.patch -------------------------------------------------------------------------------- /sunxi/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi/src/Makefile -------------------------------------------------------------------------------- /sunxi/src/sunxi_candumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/sunxi/src/sunxi_candumper.c -------------------------------------------------------------------------------- /u-boot_mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/u-boot_mod/README.md -------------------------------------------------------------------------------- /u-boot_mod/uboot_for_tp-link_tl-wr841n_v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/u-boot_mod/uboot_for_tp-link_tl-wr841n_v8.bin -------------------------------------------------------------------------------- /u-boot_mod/uboot_for_tp-link_tl-wr841n_v8.md5: -------------------------------------------------------------------------------- 1 | 365fae6ea4a6ae088c26bc603f355c1e *uboot_for_tp-link_tl-wr841n_v8.bin 2 | -------------------------------------------------------------------------------- /wiringbp-pi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/.gitignore -------------------------------------------------------------------------------- /wiringbp-pi/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/COPYING.LESSER -------------------------------------------------------------------------------- /wiringbp-pi/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/INSTALL -------------------------------------------------------------------------------- /wiringbp-pi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/People: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/People -------------------------------------------------------------------------------- /wiringbp-pi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/README.md -------------------------------------------------------------------------------- /wiringbp-pi/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/build -------------------------------------------------------------------------------- /wiringbp-pi/devLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/devLib/ds1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/ds1302.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/ds1302.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/ds1302.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/font.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/gertboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/gertboard.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/gertboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/gertboard.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/lcd.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/lcd.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/lcd128x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/lcd128x64.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/lcd128x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/lcd128x64.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/maxdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/maxdetect.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/maxdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/maxdetect.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/piFace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/piFace.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/piFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/piFace.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/piFaceOld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/piFaceOld.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/piGlow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/piGlow.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/piGlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/piGlow.h -------------------------------------------------------------------------------- /wiringbp-pi/devLib/piNes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/piNes.c -------------------------------------------------------------------------------- /wiringbp-pi/devLib/piNes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/devLib/piNes.h -------------------------------------------------------------------------------- /wiringbp-pi/examples/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/COPYING.LESSER -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/7segments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/7segments.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/buttons.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/gertboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/gertboard.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/record.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/temperature.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/voltmeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/voltmeter.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/Gertboard/vumeter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Gertboard/vumeter.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiFace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiFace/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiFace/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiFace/blink.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiFace/buttons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiFace/buttons.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiFace/ladder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiFace/ladder.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiFace/metro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiFace/metro.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiFace/motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiFace/motor.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiFace/reaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiFace/reaction.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiGlow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiGlow/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiGlow/piGlow0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiGlow/piGlow0.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiGlow/piGlow1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiGlow/piGlow1.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/PiGlow/piglow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/PiGlow/piglow.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/README.TXT -------------------------------------------------------------------------------- /wiringbp-pi/examples/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/blink.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/blink.rtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/blink.rtb -------------------------------------------------------------------------------- /wiringbp-pi/examples/blink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/blink.sh -------------------------------------------------------------------------------- /wiringbp-pi/examples/blink12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/blink12.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/blink12drcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/blink12drcs.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/blink6drcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/blink6drcs.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/blink8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/blink8.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/clock.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/delayTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/delayTest.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/ds1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/ds1302.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/header.h -------------------------------------------------------------------------------- /wiringbp-pi/examples/isr-osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/isr-osc.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/isr.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/lcd-adafruit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/lcd-adafruit.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/lcd.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/nes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/nes.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/okLed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/okLed.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/pwm.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/binary.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/blink-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/blink-io.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/blink.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/blink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/blink.sh -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/bright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/bright.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/button.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/q2w/volts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/q2w/volts.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/rht03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/rht03.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/serialRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/serialRead.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/serialTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/serialTest.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/servo.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/softPwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/softPwm.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/softTone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/softTone.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/speed.c -------------------------------------------------------------------------------- /wiringbp-pi/examples/wfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/examples/wfi.c -------------------------------------------------------------------------------- /wiringbp-pi/gpio/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/COPYING.LESSER -------------------------------------------------------------------------------- /wiringbp-pi/gpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/gpio/extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/extensions.c -------------------------------------------------------------------------------- /wiringbp-pi/gpio/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/extensions.h -------------------------------------------------------------------------------- /wiringbp-pi/gpio/gpio.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/gpio.1 -------------------------------------------------------------------------------- /wiringbp-pi/gpio/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/gpio.c -------------------------------------------------------------------------------- /wiringbp-pi/gpio/pins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/pins.c -------------------------------------------------------------------------------- /wiringbp-pi/gpio/pintest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/pintest -------------------------------------------------------------------------------- /wiringbp-pi/gpio/readall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/readall.c -------------------------------------------------------------------------------- /wiringbp-pi/gpio/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/gpio/test.sh -------------------------------------------------------------------------------- /wiringbp-pi/pins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/pins/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/pins/pins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/pins/pins.pdf -------------------------------------------------------------------------------- /wiringbp-pi/pins/pins.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/pins/pins.tex -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/Makefile -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/drcSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/drcSerial.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/drcSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/drcSerial.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/max31855.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/max31855.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/max31855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/max31855.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/max5322.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/max5322.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/max5322.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/max5322.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23008.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23008.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23008.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23016.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23016.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23016.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23016reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23016reg.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23017.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23017.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23017.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23s08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23s08.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23s08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23s08.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23s17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23s17.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23s17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23s17.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23x08.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23x08.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp23x0817.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp23x0817.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp3002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp3002.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp3002.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp3002.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp3004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp3004.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp3004.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp3004.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp3422.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp3422.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp3422.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp3422.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp4802.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp4802.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/mcp4802.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/mcp4802.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/pcf8574.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/pcf8574.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/pcf8574.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/pcf8574.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/pcf8591.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/pcf8591.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/pcf8591.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/pcf8591.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/piHiPri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/piHiPri.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/piThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/piThread.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/sn3218.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/sn3218.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/sn3218.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/sn3218.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/softPwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/softPwm.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/softPwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/softPwm.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/softServo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/softServo.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/softServo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/softServo.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/softTone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/softTone.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/softTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/softTone.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/sr595.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/sr595.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/sr595.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/sr595.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringPi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringPi.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringPi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringPi.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringPiI2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringPiI2C.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringPiI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringPiI2C.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringPiSPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringPiSPI.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringPiSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringPiSPI.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringSerial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringSerial.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringSerial.h -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringShift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringShift.c -------------------------------------------------------------------------------- /wiringbp-pi/wiringPi/wiringShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBert/openwrt-misc/HEAD/wiringbp-pi/wiringPi/wiringShift.h --------------------------------------------------------------------------------