From: eLinux.org
InnoTab
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
- GPL32902 processor
- 64MB onboard memory
- SD card slot for memory expansion (supports SD/SDHC memory cards
between the sizes of 2GB and 16GB.) - 5” Color LCD
- Touchscreen
- Tilt sensor
- uses 4AA batteries
CPU info
Processor : ARMv6-compatible processor rev 7 (v6l)
BogoMIPS : 359.62
Features : swp half thumb fastmult vfp edsp java
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x0
CPU part : 0xb76
CPU revision : 7
Hardware : GPL32900
Revision : 0000
Serial : 0000000000000000
Source Code
Hacks
- information from user “BT-Vision” aka “is0-mick” on wizardmods.net
forums
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).
Icons are also stored in the SQLite database as a binary blob.
Game icons are 57 x 57, book icons are 88 x 88
They are 16bit xRGB data, with the first 8 bytes being the width and height stored as 32bit integers in little endian format.
If you just want to run your own code you can do the following.
Download SQLite manager extension for firefox, use it to open innotab.db which is on the SD card.
Go to the “games” section, and create a duplicate entry of one that already exists..
Change the filename on the new entry to something like /vp_mnt/sd/LLN/APPS/myapp
create a folder called on the as card /LLN/APPS/myapp
in that folder create a file called _Run
and put shell commands in there :) and the innotab will execute them.
for instance try ls -aR / >/vp_mnt/sd/LLN/APPS/myapp/dir.txt
- Initial porting scummvm to the Innotab can be seen here: