We're no longer updating This wiki!!

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:c1_android_release_note_v3.5 [2017/04/10 10:06]
codewalker created
en:c1_android_release_note_v3.5 [2017/07/06 09:05] (current)
codewalker [Summary]
Line 4: Line 4:
 | Release Date | Apr/10/2017 KST | | Release Date | Apr/10/2017 KST |
 | Release Type | Regular release | | Release Type | Regular release |
-| Release Files| [[http://​dn.odroid.com/​S805/​Android/​ODROID-C/​selfinstall-odroidc-eng-s805_4.4.4_master-444-v3.5.img.xz|Self-installation Image]] (MD5SUM: ​)| +| Release Files| [[http://​dn.odroid.com/​S805/​Android/​ODROID-C/​selfinstall-odroidc-eng-s805_4.4.4_master-452-v3.5.img.xz|Self-installation Image]] (MD5SUM: ​beb5a8b5be2fa0c4504bb2995f01838c)|
-| | [[http://​dn.odroid.com/​S805/​Android/​ODROID-C/​daily-odroidc-eng-s805_4.4.4_master-444-v3.5.tar.gz|Fastboot update]] (MD5SUM: ​)|+
  
 Since Android 5.1 on C1 series has some issues, we release a Kitkat (Android 4.4.4) update again. Since Android 5.1 on C1 series has some issues, we release a Kitkat (Android 4.4.4) update again.
  
-You must format SD Card or eMMC installed 4.4.v3.2 version and write selfinstall image because partition table was updated for MTP service.+You must format SD Card or eMMC installed 4.4.v3.2 version and write selfinstall image because partition table was updated for MTP service.
  
 ===== New updates ===== ===== New updates =====
   * Supported 480x800 resolution.   * Supported 480x800 resolution.
-  * Enabled ​to invert x, y touch screen input.+  * Add a new feature ​to invert x, y axis individually ​touch screen input coordination.
     -- __//setenv touch_invert_x[y] “true”//​__ in boot.ini file.      -- __//setenv touch_invert_x[y] “true”//​__ in boot.ini file. 
   * Added a new feature to disable ODROID-VU7 touch screen driver for other touch screen which has the same VID/PID.   * Added a new feature to disable ODROID-VU7 touch screen driver for other touch screen which has the same VID/PID.
Line 20: Line 19:
   * Enabled to reverse touchscreen input.[[http://​forum.odroid.com/​viewtopic.php?​f=94&​t=26269]] <​code>​build.prop : touchscreen.reverse=true</​code>​   * Enabled to reverse touchscreen input.[[http://​forum.odroid.com/​viewtopic.php?​f=94&​t=26269]] <​code>​build.prop : touchscreen.reverse=true</​code>​
   * Added an example to launch apps via GPIO keys.[[en:​c2_app_launch_via_gpio_on_android|Application launching with GPIO trigger on Android]]   * Added an example to launch apps via GPIO keys.[[en:​c2_app_launch_via_gpio_on_android|Application launching with GPIO trigger on Android]]
-  *  
   * Added a few requested USB-Multitouch VID/PID. [[http://​forum.odroid.com/​viewtopic.php?​f=51&​t=15495]]   * Added a few requested USB-Multitouch VID/PID. [[http://​forum.odroid.com/​viewtopic.php?​f=51&​t=15495]]
 <​code>​ <​code>​
Line 133: Line 131:
 #    "​576p" ​          | 720x576 #    "​576p" ​          | 720x576
 #    "​800x480p60hz" ​  | 800x480 #    "​800x480p60hz" ​  | 800x480
 +#    "​480x800p60hz" ​  | 480x800
 #    "​800x600p60hz" ​  | 800x600 #    "​800x600p60hz" ​  | 800x600
 #    "​1024x600p60hz" ​ | 1024x600 #    "​1024x600p60hz" ​ | 1024x600
Line 149: Line 148:
 #    "​1680x1050p60hz"​ | 1680x1050 #    "​1680x1050p60hz"​ | 1680x1050
 #    "​1920x1200" ​     | 1920x1200 #    "​1920x1200" ​     | 1920x1200
-setenv hdmimode "1080p"+setenv hdmimode "720p"
  
 # HDMI/DVI Mode Configuration # HDMI/DVI Mode Configuration
Line 186: Line 185:
 # setenv max_freq "​1824"​ # setenv max_freq "​1824"​
 setenv max_freq "​1536"​ setenv max_freq "​1536"​
 +
 +# Disable Vu7
 +setenv disable_vu7 "​false"​
 +
 +# invert touch screen x,y
 +setenv touch_invert_x "​false"​
 +setenv touch_invert_y "​false"​
  
 # Booting # Booting
-setenv bootargs "​root=/​dev/​mmcblk0p2 rw console=ttyS0,​115200n8 no_console_suspend vdaccfg=${vdac_config} logo=osd1,​loaded,​${fb_addr},​${outputmode},​full hdmimode=${hdmimode} cvbsmode=${cvbsmode} hdmitx=${cecconfig} vout=${vout_mode} disablehpd=${disablehpd} ${disableuhs} overscan_top=${top} overscan_left=${left} overscan_bottom=${bottom} overscan_right=${right} androidboot.serialno=${fbt_id#​} ir_remote=${ir_remote} usbcore.autosuspend=-1 suspend_hdmiphy=${suspend_hdmiphy}"​+setenv bootargs "​root=/​dev/​mmcblk0p2 rw console=ttyS0,​115200n8 no_console_suspend vdaccfg=${vdac_config} logo=osd1,​loaded,​${fb_addr},​${outputmode},​full hdmimode=${hdmimode} cvbsmode=${cvbsmode} hdmitx=${cecconfig} vout=${vout_mode} disablehpd=${disablehpd} ${disableuhs} overscan_top=${top} overscan_left=${left} overscan_bottom=${bottom} overscan_right=${right} androidboot.serialno=${fbt_id#​} ir_remote=${ir_remote} usbcore.autosuspend=-1 suspend_hdmiphy=${suspend_hdmiphy} max_freq=${max_freq} disable_vu7=${disable_vu7} touch_invert_x=${touch_invert_x} touch_invert_y=${touch_invert_y}"
 setenv bootcmd "movi read boot 0 0x12000000; movi read dtb 0 0x12800000; bootm 0x12000000 - 0x12800000"​ setenv bootcmd "movi read boot 0 0x12000000; movi read dtb 0 0x12800000; bootm 0x12000000 - 0x12800000"​
 run bootcmd run bootcmd
 </​file>​ </​file>​
en/c1_android_release_note_v3.5.1491788191.txt.gz · Last modified: 2017/04/10 10:06 by codewalker
CC Attribution-Share Alike 3.0 Unported
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0