pxt-ev3/brick
2017-07-27 21:11:23 +01:00
..
kernel Start user app by invoking .rbf file (via added ioctl on usbdev) 2017-07-27 14:31:23 +01:00
scripts Use the correct size limit for CRAMFS (10M) 2017-07-27 21:11:23 +01:00
uf2daemon Allow writing to currently executing files 2017-07-27 20:42:28 +01:00
ins Start user app by invoking .rbf file (via added ioctl on usbdev) 2017-07-27 14:31:23 +01:00
Makefile Build and program starting fixes 2017-07-25 14:59:32 +01:00
mk Build and program starting fixes 2017-07-25 14:59:32 +01:00
README.md Update readme 2017-07-27 14:36:01 +01:00
send Add more logging 2017-07-26 10:43:43 +01:00

Support code to run on EV3 brick

Kernel module

Kernel module is based on LEGO's d_usbdev module, with the addition of slightly modified g_mass_storage module from the Linux kernel. The module and supporting sources are licensed under GPLv2 (since they are derived from GPLv2 code).

Modifications

  • the d_usbdev uses the composite framework to register an additional mass storage function in addtion to the pre-existing custom USB HID function
  • the g_mass_storage module has the following changes:
    • additional /sys/.../lun0/active entry is added, which allows for signaling drive eject to the host
  • d_usbdev has an additional ioctl() to pretend data came from the USB host - this can be used to direct the VM to do stuff

Kernel modifications

The kernel itself has modified FIFO queue sizes. The LEGO kernel uses 1024 for ep1in and ep1out, and then 64 for ep2 and ep3. Note that this is non-standard modification done with a kernel patch, that I didn't manage to find. The MSD requires 512 for ep2 and ep3. I have binary edited the kernel to do so.

Note that there's 4k of FIFO memory in the hardware. If you set the queue sizes with a sum of more than 4k, the kernel will hang, and you will not know why.

UF2 Daemon

The UF2 daemon is based on UF2 ATSAMD21 bootloader code. It exposes a virtual FAT16 file system over Linux Network Block Device interface (/dev/nbd0 to be precise). This device is then exposed via the g_mass_storage module to the host computer.

The Daemon is licensed under MIT.