From 8001827b81ed234fb67b6686e8ba9e7e779723ed Mon Sep 17 00:00:00 2001 From: Benoit Duffez Date: Fri, 25 Aug 2023 14:31:37 -0700 Subject: [PATCH 1/3] add LifeSmart LS179 installation instructions --- en/install-lifesmart.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 en/install-lifesmart.md diff --git a/en/install-lifesmart.md b/en/install-lifesmart.md new file mode 100644 index 0000000..390b372 --- /dev/null +++ b/en/install-lifesmart.md @@ -0,0 +1,39 @@ +# OpenIPC Wiki +[Table of Content](../README.md) + +For LifeSmart cameras: LS179 + +## BOM + +SoC: HI3518EV200 +Flash: ENQH127A (16MB NOR) +Sensor: soif23 (???) + +## Installation + +Follow the [instructions](help-uboot.md#bypassing-password-protected-bootloader) to get access to U-boot. + +Back up the flash and install OpenIPC according to the [instructions](https://openipc.org/cameras/vendors/hisilicon/socs/hi3518ev200). + +## WiFi + +In order to connect to WiFi, you need to configure the [wireless device](wireless-settings.md#initial-configuration) with: + +``` +rtl8188fu-hi3518ev200-lifesmart +``` + +This will power up the USB device (WiFi card) and load the appropriate Kernel driver. + +## LEDs + +The LEDs are controlled by the GPO #2. + +```bash +# turn on +gpio set 2 + +# turn off +gpio clear 2 +``` + From c46725d8691aa9b1372677ed89bd2ed77dc2ddf7 Mon Sep 17 00:00:00 2001 From: Benoit Duffez Date: Fri, 25 Aug 2023 14:35:35 -0700 Subject: [PATCH 2/3] added a few instructions --- en/install-lifesmart.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/en/install-lifesmart.md b/en/install-lifesmart.md index 390b372..6417b04 100644 --- a/en/install-lifesmart.md +++ b/en/install-lifesmart.md @@ -15,12 +15,19 @@ Follow the [instructions](help-uboot.md#bypassing-password-protected-bootloader) Back up the flash and install OpenIPC according to the [instructions](https://openipc.org/cameras/vendors/hisilicon/socs/hi3518ev200). +Select a 16MB NOR flash, and use the Ultimate firmware if you want to use WiFi. + ## WiFi -In order to connect to WiFi, you need to configure the [wireless device](wireless-settings.md#initial-configuration) with: +In order to connect to WiFi, you need to configure the [wireless device](wireless-settings.md#initial-configuration) with `rtl8188fu-hi3518ev200-lifesmart` ``` -rtl8188fu-hi3518ev200-lifesmart +fw_setenv wlandev rtl8188fu-hi3518ev200-lifesmart +# also configure your WiFi +fw_setenv wlanssid "MySSID" +fw_setenv wlanpass "password" +# and then... +reboot ``` This will power up the USB device (WiFi card) and load the appropriate Kernel driver. From c24a5a7b78cd364c1a870c122911467e0d3be924 Mon Sep 17 00:00:00 2001 From: Benoit Duffez Date: Fri, 25 Aug 2023 14:37:30 -0700 Subject: [PATCH 3/3] rephrase WiFi explanation --- en/install-lifesmart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/install-lifesmart.md b/en/install-lifesmart.md index 6417b04..66629be 100644 --- a/en/install-lifesmart.md +++ b/en/install-lifesmart.md @@ -30,7 +30,7 @@ fw_setenv wlanpass "password" reboot ``` -This will power up the USB device (WiFi card) and load the appropriate Kernel driver. +This will power up the USB WiFi module (GPO #54), and load the appropriate Kernel driver (`8188fu`). ## LEDs