User's Manual
Table Of Contents
- UPuTTYU provides Secure Socket Shell (SSH) access to the development board operating system.
- # Install Bonjour Print Service (For Windows 7 only)
- Steps:
- Check if the setup takes effect:
- In AP mode
- In Station mode
- Step1: Type UCI commands to assign SSID, key, and encryption information for running Station mode
- Step 2: Restart the Wi-Fi driver for activating the configuration
- Step 3: Check for Internet connection
- Step1: type UCI command to disable Station mode
- Step 2: restart the Wi-Fi driver
- Step 1: Create lks7688.cfg file
- Step 2: Attach the USB Drive to the board
- Step 3: Reset and press WiFi button
- # Using SCP
- Using Samba
- AWS IoT SDK for JavaScript
- AWS IoT Embedded-C SDK
- Basic Concepts :
- GPIO and Interupts
- PWM
- I2C
- SPI
- Installing MRAA
- Controlling LED with MRAA in Node.js
- Step-by-step
- Create and configure C project
- Supported cameras
- AI7688H has installed Linux UVC (USB Video Class) drivers to provide USB webcam suppport. Webcams follow the UVC standard can be supported on AI7688H. The real capabilities and supported resolution depend on the current UVC driver implementation.
- Step-by-step
- we use mjpg-streamer as the streaming application and it's already installed in the system firmware by default. For the webcam, Logitech C310 is used in this example.
AI7688H User Manual
-18-
Copyright@2016 AcSiP
#define SERIAL_CLOCK_DIVISOR 16
#define CONFIG_BOOTDELAY 1 /* autoboot after 5 seconds */
#define CONFIG_BAUDRATE 57600
#define CONFIG_SERVERIP 10.10.10.3
#define CONFIG_IPADDR 10.10.10.123
Change this:
#define CONFIG_BAUDRATE 57600
to this (change the baudrate from 57600 to 115200 as an example):
#define CONFIG_BAUDRATE 115200
This will then change the bootloader console baudrate from 57600 to 115200
# Now build the bootloader and upload it to the board
3.8 Change Kernel Console
If you want to use another UART port as the kernel console, you can follow the steps below
to adjust the configuration.
# modify the file target/linux/ramips/dts/LINKIT7688.dts and chang
chosen {
bootargs = "console=ttyS2,57600";
};
to this (e.g. change to UART0 and 115200 baudrate):
chosen {
bootargs = "console=ttyS0,115200";
};
This will then change the kernel console from UART2 to UART0 and its baudrate from 57600
to 115200.
Now build the firmware and upload it to the board through the Web UI or the USB drive.