版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/hellomxj1/article/details/25324125
Newton1开发平台 |
• 很适合可穿戴设备的超小尺寸 • 高性能1.0GHz处理器,支持各类操作系统和丰富应用 • 超低功耗可延长工作时间2倍于业界的同类设备 • 支持Android 4.3及以上系统。全然开源的开发平台 |
主要特点:
• 适用于穿戴式设备的超小尺寸:22 x 38 x 3 mm 。
• 採用君正1GHz高性能低功耗处理器JZ4775,提供业界率先的执行功耗和待机功耗。
• 採用内置eMMC存储和LPDDR内存的EMCP。
• 支持多种MEMS传感器,包括陀螺仪、加速度计和磁力计,温湿度,压力和ECG心电等传感器。
• 支持Wi-Fi、Bluetooth
4.0 (BLE)、NFC和FM无线连接功能。
• PCB板上内置WIFI和BT陶瓷天线。
• 支持TFT LCD和Mirasol显示屏。
• 支持电容触摸屏。
• 支持DMIC数字麦克风和带功放的扬声器。
• 提供USB、I2C、UART、GPIO等多种扩展接口。方便扩展各类设备。
• 支持Android
4.3和Linux 3.0.8系统。
目标应用:
•可穿戴式设备:智能手表等
• 医疗电子设备:监測心电图、心率等的可穿戴式医疗设备
• 智能家居:无线音频、智能网关、家居控制中心等
• 消费类电子:高音质播放器、游戏机、指纹/人脸考勤机、E-Ink屏类产品等
Newton1功能框图
Newton1主板图
|
|
Newton1主板正面图 | Newton1主板背面图 |
Newton1平台具体规格
功能 | 具体描写叙述 |
SoC | Ingenic JZ4775 |
CPU | 1GHz XBurst MIPS32 little endian |
Caches | 16kB I-Cache + 16kB D-Cache L1 cache, 256kB L2 cache |
GPU | Dedicated 2D graphic engine |
VPU | H.264, MPEG-2, MPEG-4, VC-1, VP8, RV9 up to 720p@30fps |
Flash | 32Gb eMMC |
RAM | 3Gb LP-DDR1 |
Wireless Module | USI WM-BAN-BM-13 Wi-Fi + BT + FM + NFC SiP module (based on Broadcom 43341) - 802.11 a/b/g/n, dual-band 2.4GHz and 5 GHz - Bluetooth 4.0 (BLE) + EDR - NFC supports for the ISO/IEC 18092, ISO/IEC 21481, ISO/IEC 14443 Types A, B and B', Japanese Industrial Standard (JIS) (X) 6319-4, and ISO/IEC 15693 standards |
Power Management IC | Dialog DA9024 |
Sensors | - InvenSense MPU-9250 with 3-axis gyroscope, 3-axis accelerometer and 3-axis magnetometer - ECG sensor (optional on delivery) - Temperature and humidity sensors (on external FPC board) |
Display | TFT LCD: 1.6”, 240 x 240 resolution, 262K colors, with LED backlight |
Touch screen | Capacitive touch screen |
Audio | Digital MIC and speaker with PA |
Button | POWER and RETURN buttons |
Motor | Support |
USB 2.0 | Micro USB device |
UART | Serial debug port |
Power | USB: 5V; Li-on battery: 3.7~4.2V |
Clocks | 24MHz, 32.768kHz |
Dimensions | 22 x 38 x 3 mm |
Power consumption | Power consumption without LCD and backlight, Wi-Fi and BT are off: - 4mW standby - 80mW idle working - 100mW MP3 playing - 260mW system working |
External connectors | LCD connector, TP connector, DMIC and temp & humidity sensors FPC board connector |
External debug board | via UART and Micro USB device |
Operating system | Android 4.3, Linux 3.0.8 |
获取源代码:
Newton1平台的开发主机环境必须是64位的Linux系统,推荐使用Ubuntu-12.04 64-bit。具体帮助请參考DevKit中的开发文档。
Newton1平台的Android和Linux系统的代码是开源的,源代码可通过以下的命令下载:
1) Android 4.3 Jelly Bean:
$ mkdir newton-android $ cd newton-android $ wget http://git.ingenic.cn:8082/bj/repo $ chmod +x repo $ ./repo init -u http://git.ingenic.cn:8082/gerrit/AOSP/platform/manifest -b android-4.3-newton-4775 $ ./repo sync |
以上命令将同步到最新代码。
因为源代码较大,整个下载过程须要等待若干小时。
下载完毕后,使用以下命令同步到最新稳定版本号:
$ ./repo forall -c "git reset --hard ingenic-android4.3.0-kernel3.0.8-newton-vx.x-xxxxxxxx" |
使用以下命令查看全部版本号号:
$ cd kernel $ git tag | grep newton |
2)Linux 3.0.8 SDK (包括bootloader, kernel, rootfs, toolchain,documents and other softwares):
$ mkdir newton-linux $ cd newton-linux $ wget http://git.ingenic.cn:8082/bj/repo $ chmod +x repo $ ./repo init -u http://git.ingenic.cn:8082/gerrit/linux/manifest.git -b newton-master $ ./repo sync |