├── README.md └── RESOURCES ├── buildroot ├── dl-file-list.txt ├── eale-gpio-app │ ├── Makefile │ └── eale-gpio-app.c ├── genimage.cfg ├── overlay │ └── etc │ │ ├── init.d │ │ └── S30usbgadget │ │ └── network │ │ └── interfaces ├── patches │ ├── linux │ │ └── 0001-Stripped-back-pocketbeagle-devicetree.patch │ └── uboot │ │ ├── 0001-am335x_evm-uEnv.txt-bootz-n-fixes.patch │ │ ├── 0002-U-Boot-BeagleBone-Cape-Manager.patch │ │ └── 0003-pocketbeagle-tweaks.patch ├── post-image.sh └── uEnv.txt ├── common └── linux-headers-4.9.82-ti-r102_1stretch_armhf.deb ├── debugging ├── Makefile ├── debug-labs.tar.gz └── pocket-debs.tar.gz ├── i2c-drivers ├── Makefile ├── README ├── i2c-accel.dts ├── i2c-accel.sh ├── i2c-foo.dts ├── i2c-foo.sh ├── lab1.c └── lab2.c ├── modules-kbuild ├── Makefile ├── lab1.c ├── lab2_1.c ├── lab2_2.c └── red-module.c ├── pocketbeagle ├── BaconCapeLabs.pdf ├── Makefile ├── README.md ├── i2c-accel.dts ├── i2c-accel.sh ├── js-spi-write-digit │ ├── README.md │ ├── write-digit.js │ └── writeDigitTest.js ├── pwm.js ├── rgb.pru0c ├── run-rgb-pru0.sh ├── shiftout.js └── spidev.sh ├── spi-drivers ├── Makefile ├── lab1.c ├── sparkle.sh ├── spi-gpio.dts ├── spi-gpio.sh ├── spi_test.c └── write-digit.sh ├── u-boot └── Makefile ├── usb-subsystem ├── lab_1 │ └── acm_setup.sh ├── lab_2 │ ├── ffs-test │ │ ├── Makefile │ │ ├── ffs-test.c │ │ └── le_byteshift.h │ └── ffs_setup.sh └── lab_3 │ └── libusb_test │ ├── Makefile │ └── test.c ├── yocto-images └── Makefile └── yocto-intro └── Makefile /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/README.md -------------------------------------------------------------------------------- /RESOURCES/buildroot/dl-file-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/dl-file-list.txt -------------------------------------------------------------------------------- /RESOURCES/buildroot/eale-gpio-app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/eale-gpio-app/Makefile -------------------------------------------------------------------------------- /RESOURCES/buildroot/eale-gpio-app/eale-gpio-app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/eale-gpio-app/eale-gpio-app.c -------------------------------------------------------------------------------- /RESOURCES/buildroot/genimage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/genimage.cfg -------------------------------------------------------------------------------- /RESOURCES/buildroot/overlay/etc/init.d/S30usbgadget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/overlay/etc/init.d/S30usbgadget -------------------------------------------------------------------------------- /RESOURCES/buildroot/overlay/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/overlay/etc/network/interfaces -------------------------------------------------------------------------------- /RESOURCES/buildroot/patches/linux/0001-Stripped-back-pocketbeagle-devicetree.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/patches/linux/0001-Stripped-back-pocketbeagle-devicetree.patch -------------------------------------------------------------------------------- /RESOURCES/buildroot/patches/uboot/0001-am335x_evm-uEnv.txt-bootz-n-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/patches/uboot/0001-am335x_evm-uEnv.txt-bootz-n-fixes.patch -------------------------------------------------------------------------------- /RESOURCES/buildroot/patches/uboot/0002-U-Boot-BeagleBone-Cape-Manager.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/patches/uboot/0002-U-Boot-BeagleBone-Cape-Manager.patch -------------------------------------------------------------------------------- /RESOURCES/buildroot/patches/uboot/0003-pocketbeagle-tweaks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/patches/uboot/0003-pocketbeagle-tweaks.patch -------------------------------------------------------------------------------- /RESOURCES/buildroot/post-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/post-image.sh -------------------------------------------------------------------------------- /RESOURCES/buildroot/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/buildroot/uEnv.txt -------------------------------------------------------------------------------- /RESOURCES/common/linux-headers-4.9.82-ti-r102_1stretch_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/common/linux-headers-4.9.82-ti-r102_1stretch_armhf.deb -------------------------------------------------------------------------------- /RESOURCES/debugging/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RESOURCES/debugging/debug-labs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/debugging/debug-labs.tar.gz -------------------------------------------------------------------------------- /RESOURCES/debugging/pocket-debs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/debugging/pocket-debs.tar.gz -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/Makefile -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/README -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/i2c-accel.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/i2c-accel.dts -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/i2c-accel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/i2c-accel.sh -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/i2c-foo.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/i2c-foo.dts -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/i2c-foo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/i2c-foo.sh -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/lab1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/lab1.c -------------------------------------------------------------------------------- /RESOURCES/i2c-drivers/lab2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/i2c-drivers/lab2.c -------------------------------------------------------------------------------- /RESOURCES/modules-kbuild/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/modules-kbuild/Makefile -------------------------------------------------------------------------------- /RESOURCES/modules-kbuild/lab1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/modules-kbuild/lab1.c -------------------------------------------------------------------------------- /RESOURCES/modules-kbuild/lab2_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/modules-kbuild/lab2_1.c -------------------------------------------------------------------------------- /RESOURCES/modules-kbuild/lab2_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/modules-kbuild/lab2_2.c -------------------------------------------------------------------------------- /RESOURCES/modules-kbuild/red-module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/modules-kbuild/red-module.c -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/BaconCapeLabs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/BaconCapeLabs.pdf -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/README.md -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/i2c-accel.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/i2c-accel.dts -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/i2c-accel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/i2c-accel.sh -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/js-spi-write-digit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/js-spi-write-digit/README.md -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/js-spi-write-digit/write-digit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/js-spi-write-digit/write-digit.js -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/js-spi-write-digit/writeDigitTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/js-spi-write-digit/writeDigitTest.js -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/pwm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/pwm.js -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/rgb.pru0c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/rgb.pru0c -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/run-rgb-pru0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/run-rgb-pru0.sh -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/shiftout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/shiftout.js -------------------------------------------------------------------------------- /RESOURCES/pocketbeagle/spidev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/pocketbeagle/spidev.sh -------------------------------------------------------------------------------- /RESOURCES/spi-drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/spi-drivers/Makefile -------------------------------------------------------------------------------- /RESOURCES/spi-drivers/lab1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/spi-drivers/lab1.c -------------------------------------------------------------------------------- /RESOURCES/spi-drivers/sparkle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/spi-drivers/sparkle.sh -------------------------------------------------------------------------------- /RESOURCES/spi-drivers/spi-gpio.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/spi-drivers/spi-gpio.dts -------------------------------------------------------------------------------- /RESOURCES/spi-drivers/spi-gpio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/spi-drivers/spi-gpio.sh -------------------------------------------------------------------------------- /RESOURCES/spi-drivers/spi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/spi-drivers/spi_test.c -------------------------------------------------------------------------------- /RESOURCES/spi-drivers/write-digit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/spi-drivers/write-digit.sh -------------------------------------------------------------------------------- /RESOURCES/u-boot/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RESOURCES/usb-subsystem/lab_1/acm_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/usb-subsystem/lab_1/acm_setup.sh -------------------------------------------------------------------------------- /RESOURCES/usb-subsystem/lab_2/ffs-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/usb-subsystem/lab_2/ffs-test/Makefile -------------------------------------------------------------------------------- /RESOURCES/usb-subsystem/lab_2/ffs-test/ffs-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/usb-subsystem/lab_2/ffs-test/ffs-test.c -------------------------------------------------------------------------------- /RESOURCES/usb-subsystem/lab_2/ffs-test/le_byteshift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/usb-subsystem/lab_2/ffs-test/le_byteshift.h -------------------------------------------------------------------------------- /RESOURCES/usb-subsystem/lab_2/ffs_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/usb-subsystem/lab_2/ffs_setup.sh -------------------------------------------------------------------------------- /RESOURCES/usb-subsystem/lab_3/libusb_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/usb-subsystem/lab_3/libusb_test/Makefile -------------------------------------------------------------------------------- /RESOURCES/usb-subsystem/lab_3/libusb_test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-ale/Code/HEAD/RESOURCES/usb-subsystem/lab_3/libusb_test/test.c -------------------------------------------------------------------------------- /RESOURCES/yocto-images/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RESOURCES/yocto-intro/Makefile: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------