Quanzhi H6 Orange Pi Lite 2 Android 7.0 WIFI configuration

Problem reason At present, the WIFI of the image compiled by our SDK is useless. We will continue to solve this problem. Check the schematic diagram and confirm the pin It can be confirmed from the schematic diagram that SDC1 module is used for WIFI, power supply is provided by VCC33-WIFI, and VCC33-WIFI is provided by CLDO3 ...

Posted by haixiao on Mon, 30 Dec 2019 20:53:46 -0800

Realize the connection between Golang and Erlang (Port)

title: realize the connection between Golang and Erlang (Port) categories: Golang In Erlang, there are many ways to interact with other languages. The common ways are Interaction using TCP protocol Using Port Using ERL? Interface to realize CNode NIF The latter several kinds of difficulties are all there, but also use a more complex C/C + +, ...

Posted by tha_mink on Fri, 06 Dec 2019 14:36:07 -0800

Renode: import custom peripheral through plugin

Renode: import custom peripheral through plugin The include command of Renode can dynamically load. cs files. With this feature, you can import custom peripherals. You can write your own peripherals that are not included in the Renode installation package, and then import them with the include command ...

Posted by riddhi on Wed, 30 Oct 2019 10:23:38 -0700

appium automation -- pageobject mode 02

Directory structure changes: 1. The Android client.py script has no changes: #AndroidClient.py from appium.webdriver.webdriver import WebDriver from appium import webdriver class AndroidClient(object): driver:WebDriver @classmethod def installApp(cls)->WebDriver: caps={} ...

Posted by hossfly007 on Fri, 18 Oct 2019 07:51:28 -0700

webrtc Code Walkthrough 15 (X264 Code Opening FEC is less effective than VP8 Problem Location) - - to be continued

I. Problem Description 1) Pre-conditions 1. Configuring the anti-loss method of webrtc is FEC Only. There are two anti-loss methods for webrtc: 1. NACK; 2. FEC. When starting configuration, you can choose to use NACK or FEC only or NACK and FEC at the same time. Using both NACK and FEC, webrtc wo ...

Posted by Whitestripes9805 on Thu, 01 Aug 2019 03:09:14 -0700

ios Bluetooth Development (2) Code implementation of ios connection peripheral

Original web address The last article introduced the technical knowledge of Bluetooth, and here we describe the application scenario of central mode in detail.Main device (mobile phone scans connected peripherals, discovers peripheral services and attributes, operates applications of services and attributes.Generally speaking, peripherals ...

Posted by croakingtoad on Wed, 12 Jun 2019 09:31:49 -0700

Java + TestNG + Appium for Concurrent Testing of Multiple Android Terminals on a Single Machine

Preface We know that when testing multiple Android terminals with Appium on a single PC, we need to start different Appium Server s with different port numbers at the same time, such as two servers: node main.js -p 4723 -bp 4724 -chromedriver-port 9515 -U emulator1 node main.js -p 4725 -bp 4726 -chromedriver-port 9516 -U emulator2 The App ...

Posted by pontiac007 on Tue, 21 May 2019 15:19:15 -0700

Ubuntu 16.10 simulator failed to start

Start Android's own simulator error message on Ubuntu 16.10 as follows: /opt/androidsdk/tools/emulator -netdelay none -netspeed full -avd Android_TV1080_22 libGL error: unable to load driver: i965_dri.so Note: The environment variable $ANDROID_SDK_HOME is set, and the emulator uses that variable to locate AVDs. This may result in the emulato ...

Posted by Amgine on Sat, 06 Apr 2019 15:24:31 -0700

python installs apk packages concurrently for multiple android devices

I. demand Recently, we need to install APK packages for several pads, but in the previous series scripts, it takes 1 minute for one pad to install an APK and 80 minutes for 80 pads to install an apk. So I wonder if I can let the task pool install the APK in batches in parallel. Second, the realization of ideas: Think of usin ...

Posted by Nairb on Sat, 23 Mar 2019 22:51:28 -0700