From: eLinux.org

InnoTab

Vtech innotab
image.jpg

Contents

Description

Take learning to the next level with the InnoTab Learning App Tablet by
VTech! This multi-media tablet combines interactive reading, learning
games, creative activities, and a rich collection of applications into a
sleek and durable educational toy that kids will want to play with.
Featuring a 5” color touch screen and tilt-sensor, kids can tap, flick,
drag, and pat their way to learning fun. The fun continues with many
on-board applications such as an MP3 Player, Video Player, Art Studio,
Friends List, Calculator, and Clock engaging kids for hours as they
develop their skills with this electronic learning toy. Additional
cartridges with favorite licensed characters are sold separately and
teach essential skills in reading, logic, and creativity. Additional
content such as e-books and learning games can easily be uploaded to the
InnoTab through VTech’s Learning Lodge Navigator where parents can also
see their child’s progress on a variety of educational milestones and
lessons. Additional content may require an SD memory card (not
included).

Specifications

CPU info

  1. Processor : ARMv6-compatible processor rev 7 (v6l)
  2. BogoMIPS : 359.62
  3. Features : swp half thumb fastmult vfp edsp java
  4. CPU implementer : 0x41
  5. CPU architecture: 7
  6. CPU variant : 0x0
  7. CPU part : 0xb76
  8. CPU revision : 7
  9. Hardware : GPL32900
  10. Revision : 0000
  11. Serial : 0000000000000000

Source Code

Hacks

Innotab case
outside-a.jpg

  1. The innotab uses a Sqlite database to keep track of its installed applications (this is copied to the SD card when a blank one is inserted).
  2. Icons are also stored in the SQLite database as a binary blob.
  3. Game icons are 57 x 57, book icons are 88 x 88
  4. They are 16bit xRGB data, with the first 8 bytes being the width and height stored as 32bit integers in little endian format.
  5. If you just want to run your own code you can do the following.
  6. Download SQLite manager extension for firefox, use it to open innotab.db which is on the SD card.
  7. Go to the games section, and create a duplicate entry of one that already exists..
  8. Change the filename on the new entry to something like /vp_mnt/sd/LLN/APPS/myapp
  9. create a folder called on the as card /LLN/APPS/myapp
  10. in that folder create a file called _Run
  11. and put shell commands in there :) and the innotab will execute them.
  12. for instance try ls -aR / >/vp_mnt/sd/LLN/APPS/myapp/dir.txt
  • Initial porting scummvm to the Innotab can be seen here:

Resources