TODO list

Posts:

SVNES debugging

USB MSC/SCSI USBRAM FIFO start address problem Cortex-M7 cache & DMA Flash as FatFs/SCSI RGB LED scanning using timers & DMA New PCB revision I2S 16bit/32bit endian mess Bootloader uses FatFs with flash partitions & MSC for mbed-like firmware update I2C interrupt & DMA transfer MPU9250 & joystick

Jetson TX2 PCIe patch https://devtalk.nvidia.com/default/topic/1002486/iommu-unhandled-context-fault-on-pci-device-dma/

ASLR (2018-01-17)

ASMedia 1061 PCIe SATA controller strange core voltage

Discrepancy between bash v2 and v4

I was porting a few programs, originally written for Noah (bash v2) a few years ago, to modern Linux (bash v4): 【插件】终端单词默写软件 【插件】文件管理器(终端资源管理器) 【游戏】推箱子游戏,bash版

The main discrepancy being the assignments of array variables. In bash version 2, I wrote: declare array=("'a' 'b' 'c' 'd'") array=($1) Which, for bash version 4, need to be updated as: declare array=('a' 'b' 'c' 'd') eval array=($1)