Hello,
I am working with the AMB82-Mini (RTL8735B) development kit and trying to stream video wirelessly from the camera module that ships with the kit.
My goal is to:
-
capture video from the onboard camera
-
transmit the video wirelessly over WiFi
-
also communicate with the sensor via I2C for configuration and register access
However I am running into issues during sensor initialization.
Current setup
-
Board: AMB82-Mini
-
SDK: ameba-rtos-pro2
-
Example project:
mmfv2_video_example -
Camera module: the small square module included with the kit
-
Module marking: 台亦光电 (Taiyee Optoelectronics)
The module itself does not appear to have a visible sensor marking.
Issue
During boot I see the video subsystem initialize, but sensor commands fail:
VOE command 0x270 fail
VOE command 0x206 fail
and when probing registers through the video I2C interface I receive:
reg 0x0A data = 0x00
reg 0x0B data = 0x00
From examining the SDK I found that only these sensor drivers appear in the build:
sensor_ps5270.c
sensor_ps5420.c
and the firmware includes:
sensor_ps5270.bin
sensor_ps5270_hdr.bin
So it appears the system expects a PS5270 sensor, but I am not certain that the onboard module actually uses this sensor.
Questions
-
What sensor is used in the AMB82-Mini kit camera module?
- Is it PS5270, PS5420, or something else?
-
Where is the sensor selected in the SDK?
I see logs printing:
sensor id %d iq_data %x sensor_data %xbut I have not found where that ID maps to the sensor driver.
-
Is the sensor GPIO configuration stored in the FCS / VOE firmware blob?
I see the call:
hal_video_isp_set_sensor_gpio(...)which loads pins from
gpio_list. -
What is the recommended way to stream video wirelessly from this camera?
-
RTSP
-
RTMP
-
custom UDP streaming
-
-
Is there a reference example for sending camera video over WiFi using the onboard module?
I want to build a system where the AMB82-Mini:
-
captures camera frames
-
sends them wirelessly over WiFi
-
allows remote I2C access to the camera registers.
Any guidance on the correct sensor configuration or example projects would be greatly appreciated.
Thank you.