Camera: AOQEE C1 - themactep/thingino-firmware GitHub Wiki
AOQEE C1
Hardware
- SoC: Ingenic T23N (64MB)
- Image Sensor: SmartSense SC2336 (2MP)
- WiFi Module: ATBM6062 (USB)
- Flash Chip: NOR 8MB
- Power: 5V DC USB-A hardwired
Installation
[!WARNING] Cloner is not supported!
Programmer method
- Open the rubber cover at the side of the camera and undo the screw.
- Squash the camera body from sides and insert a guitar picker at the bottom part of the front cover, gentry pry the picker to remove the cover.
- Undo the screws holding the PCB to get access to the flash chip on the back side of the PCB.
- Clip the flash chip and use a CH341A programmer to install the firmware.
UART + SD card method
- Download a firmware image from the Thingino website.
- Copy the image to a FAT32 formatted SD card.
- Connect the UART contacts to a USB to TTL adapter.
- Power the device and interrupt the boot process to get to the U-Boot prompt.
- Run the following commands line by line to flash the firmware.
setenv baseaddr 0x82000000; setenv partsize 0x800000; mw.b ${baseaddr} 0xff ${partsize}; fatload mmc 0:1 ${baseaddr} thingino-aoqee_c1.bin; sf probe 0; sf erase 0x0 ${partsize}; sf write ${baseaddr} 0x0 ${filesize}; reset