diff --git a/README.md b/README.md index e08ba3c..b082d27 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ make clean && make ```bash ./deployment_service.sh ``` + **reboot your system** ```bash sudo reboot @@ -32,7 +33,29 @@ sudo systemctl daemon-reload https://github.com/UCTRONICS/SKU_RM0004/blob/main/data/NVMe_User_Guide.md +## Troubleshooting + +### Screen is stuck on the UCTRONICS logo + **reboot after making changes** +#### Enable ARM I2C through `raspi-config` +```bash +sudo raspi-config +``` +![image](data/i2c-module-1.jpg) +![image](data/i2c-module-2.jpg) +![image](data/i2c-module-3.jpg) +#### Check for valid configuration in `/boot/firmware/config.txt` +```bash +... +dtparam=i2c_arm=on +... +# UCTronics LCD +dtparam=i2c_arm_baudrate=400000 +... +# UCTronics Power Button +dtoverlay=gpio-shutdown,gpio_pin=4,active_low=1,gpio_pull=up +``` diff --git a/data/i2c-module-1.jpg b/data/i2c-module-1.jpg new file mode 100644 index 0000000..5806d2d Binary files /dev/null and b/data/i2c-module-1.jpg differ diff --git a/data/i2c-module-2.jpg b/data/i2c-module-2.jpg new file mode 100644 index 0000000..add15db Binary files /dev/null and b/data/i2c-module-2.jpg differ diff --git a/data/i2c-module-3.jpg b/data/i2c-module-3.jpg new file mode 100644 index 0000000..5feb055 Binary files /dev/null and b/data/i2c-module-3.jpg differ