【E2057】可穿戴设备-智能手表

2021-11-02 10:40:44      索炜达电子      408     

项目编号:E2057

文件大小:1.06M

源码说明:带中文注释

开发环境:C编译器

简要概述:

可穿戴设备-智能手表

【E2057】可穿戴设备-智能手表

【E2057】可穿戴设备-智能手表

【E2057】可穿戴设备-智能手表

目录│文件列表:

 └ 可穿戴设备--智能手表

    ├ Doc

    │  │ IMG_20121227_125945.jpg

    │  │ IMG_20130109_201109.jpg

    │  └ IMG_20130111_165505.jpg

    └ Src

       ├ Android

       │  │ .classpath

       │  │ .project

       │  │ AndroidManifest.xml

       │  │ default.properties

       │  │ LICENSE

       │  │ MW_v0.2.4b_APK_API.txt

       │  │ NOTICE

       │  │ proguard.cfg

       │  │ project.properties

       │  │ README

       │  ├ .settings

       │  │  └ org.eclipse.jdt.core.prefs

       │  ├ assets

       │  │  │ email.bmp

       │  │  │ idle_call.bmp

       │  │  │ idle_gmail.bmp

       │  │  │ idle_icons_row.bmp

       │  │  │ idle_sms.bmp

       │  │  │ message.bmp

       │  │  │ metawatch_16pt_11pxl.ttf

       │  │  │ metawatch_8pt_5pxl_CAPS.ttf

       │  │  │ metawatch_8pt_7pxl_CAPS.ttf

       │  │  │ phone.bmp

       │  │  │ play.bmp

       │  │  │ timer.bmp

       │  │  │ weather_cloudy.bmp

       │  │  │ weather_rain.bmp

       │  │  │ weather_snow.bmp

       │  │  │ weather_sunny.bmp

       │  │  │ weather_thunderstorm.bmp

       │  │  │ weather_wind.bmp

       │  │  └ mdpi

       │  │     └ _pre_production

       │  │        └ notification.svg

       │  ├ res

       │  │  ├ drawable-hdpi

       │  │  │  │ connected.png

       │  │  │  │ connected_large.png

       │  │  │  │ disconnected.png

       │  │  │  │ disconnected_large.png

       │  │  │  └ icon.png

       │  │  ├ drawable-ldpi

       │  │  │  └ icon.png

       │  │  ├ drawable-mdpi

       │  │  │  └ icon.png

       │  │  ├ layout

       │  │  │  │ device_selection.xml

       │  │  │  │ list_item.xml

       │  │  │  │ main.xml

       │  │  │  │ notification.xml

       │  │  │  └ settings.xml

       │  │  ├ menu

       │  │  │  │ menu.xml

       │  │  │  └ test.xml

       │  │  └ values

       │  │     └ strings.xml

       │  └ src

       │     └ org

       │        ├ anddev

       │        │  └ android

       │        │     └ weatherforecast

       │        │        └ weather

       │        │           │ GoogleWeatherHandler.java

       │        │           │ WeatherCurrentCondition.java

       │        │           │ WeatherForecastCondition.java

       │        │           │ WeatherSet.java

       │        │           └ WeatherUtils.java

       │        └ metawatch

       │           └ manager

       │              │ AlarmReceiver.java

       │              │ ApiIntentReceiver.java

       │              │ Application.java

       │              │ BootUpReceiver.java

       │              │ Call.java

       │              │ CallStateListener.java

       │              │ CallVibrate.java

       │              │ DeviceSelection.java

       │              │ GmailMonitor.java

       │              │ Idle.java

       │              │ ImageViewer.java

       │              │ IntentReceiver.java

       │              │ MediaControl.java

       │              │ Message.java

       │              │ MetaWatch.java

       │              │ MetaWatchService.java

       │              │ Monitors.java

       │              │ Notification.java

       │              │ NotificationBuilder.java

       │              │ Protocol.java

       │              │ Settings.java

       │              │ Test.java

       │              │ TestSmsLoop.java

       │              └ Utils.java

       └ Device

          ├ Application

          │  │ Background.c

          │  │ Background.h

          │  │ BluetoothSpp.c

          │  │ BluetoothSpp.h

          │  │ BufferPool.c

          │  │ BufferPool.h

          │  │ Buttons.c

          │  │ Buttons.h

          │  │ CommandTask.c

          │  │ CommandTask.h

          │  │ CRC16.c

          │  │ CRC16.h

          │  │ DebugUart.c

          │  │ DebugUart.h

          │  │ Defines.h

          │  │ Display.c

          │  │ Display.h

          │  │ Fonts.c

          │  │ Fonts.h

          │  │ FrameBuffer.c

          │  │ FrameBuffer.h

          │  │ FreeRTOSConfig.h

          │  │ HuffManEngText.c

          │  │ HuffManEngText.h

          │  │ Icons.c

          │  │ Icons.h

          │  │ IdlePage.c

          │  │ IdlePage.h

          │  │ IdlePageGameOfLife.c

          │  │ IdlePageGameOfLife.h

          │  │ IdlePageListPairedDevices.c

          │  │ IdlePageListPairedDevices.h

          │  │ IdlePageMain.c

          │  │ IdlePageMain.h

          │  │ IdlePageQrCode.c

          │  │ IdlePageQrCode.h

          │  │ IdlePageWatchStatus.c

          │  │ IdlePageWatchStatus.h

          │  │ LcdBuffer.c

          │  │ LcdBuffer.h

          │  │ LcdDisplay.c

          │  │ LcdDisplay.h

          │  │ LcdTask.c

          │  │ LcdTask.h

          │  │ main.c

          │  │ MessageQueues.c

          │  │ MessageQueues.h

          │  │ Messages.h

          │  │ OneSecondTimers.c

          │  │ OneSecondTimers.h

          │  │ SerialProfile.h

          │  │ startup.s

          │  │ Statistics.c

          │  │ Statistics.h

          │  │ Utilities.c

          │  └ Utilities.h

          ├ FreeRTOS

          │  │ croutine.c

          │  │ list.c

          │  │ queue.c

          │  │ tasks.c

          │  │ timers.c

          │  ├ include

          │  │  │ croutine.h

          │  │  │ FreeRTOS.h

          │  │  │ list.h

          │  │  │ mpu_wrappers.h

          │  │  │ portable.h

          │  │  │ projdefs.h

          │  │  │ queue.h

          │  │  │ semphr.h

          │  │  │ StackMacros.h

          │  │  │ task.h

          │  │  └ timers.h

          │  └ portable

          │     ├ MemMang

          │     │  └ heap_2.c

          │     └ RVDS

          │        └ ARM_CM3

          │           │ port.c

          │           └ portmacro.h

          ├ Hardware

          │  │ hal_battery.c

          │  │ hal_battery.h

          │  │ hal_buttons.c

          │  │ hal_buttons.h

          │  │ hal_rtc.c

          │  │ hal_rtc.h

          │  │ hal_timer.c

          │  │ hal_timer.h

          │  │ rit128x96x4.c

          │  │ rit128x96x4.h

          │  ├ DriverLib

          │  │  │ adc.h

          │  │  │ can.h

          │  │  │ comp.h

          │  │  │ cpu.h

          │  │  │ debug.h

          │  │  │ driverlib.lib

          │  │  │ epi.h

          │  │  │ ethernet.h

          │  │  │ flash.h

          │  │  │ gpio.h

          │  │  │ hibernate.h

          │  │  │ i2c.h

          │  │  │ i2s.h

          │  │  │ interrupt.h

          │  │  │ mpu.h

          │  │  │ pin_map.h

          │  │  │ pwm.h

          │  │  │ qei.h

          │  │  │ rom.h

          │  │  │ rom_map.h

          │  │  │ ssi.h

          │  │  │ sysctl.h

          │  │  │ systick.h

          │  │  │ timer.h

          │  │  │ uart.h

          │  │  │ udma.h

          │  │  │ usb.h

          │  │  └ watchdog.h

          │  └ Inc

          │     │ asmdefs.h

          │     │ hal_lcd.h

          │     │ hw_adc.h

          │     │ hw_can.h

          │     │ hw_comp.h

          │     │ hw_epi.h

          │     │ hw_ethernet.h

          │     │ hw_flash.h

          │     │ hw_gpio.h

          │     │ hw_hibernate.h

          │     │ hw_i2c.h

          │     │ hw_i2s.h

          │     │ hw_ints.h

          │     │ hw_memmap.h

          │     │ hw_nvic.h

          │     │ hw_pwm.h

          │     │ hw_qei.h

          │     │ hw_ssi.h

          │     │ hw_sysctl.h

          │     │ hw_timer.h

          │     │ hw_types.h

          │     │ hw_uart.h

          │     │ hw_udma.h

          │     │ hw_usb.h

          │     │ hw_watchdog.h

          │     └ lm3s8962.h

          └ Project

             │ WatchDemo.plg

             │ WatchDemo.tra

             │ WatchDemo.uvopt

             │ WatchDemo.uvproj

             │ WatchDemo_Target 1.dep

             │ WatchDemo_uvopt.bak

             └ WatchDemo_uvproj.bak

TAG智能手表
  • 9 次
  • 1 分