Wiz: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
K (lokale jpg-Kopie)
(5 dazwischenliegende Versionen von 3 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
http://www.globalgph.com/images/co11_2.jpg
+
[[Bild:GP2X Wiz.jpg|450px|right]]
 +
== Getting Started ==
 +
* buy a wiz
 +
* see games supercollide
  
 
+
* Developers
See [http://www.gp2xwiz.co.uk/ Official Wiz Wiki]
+
** see [http://www.gp2xwiz.co.uk/ Official Wiz Wiki]
& Files on [http://archive.gp2xwiz.de/ Wiz File Archive]
+
* Superusers
 +
* Users
 +
** File downloads currently on [http://archive.gp2xwiz.de/ Wiz File Archive]
  
  
Zeile 10: Zeile 15:
 
* [[User:AndiS|AndiS]]
 
* [[User:AndiS|AndiS]]
 
* [[User:jay|Jay]]
 
* [[User:jay|Jay]]
 +
* [[User:Talon|Talon]]
 
* . you?
 
* . you?
 
  
 
== Setup the toolchain ==
 
== Setup the toolchain ==
Zeile 27: Zeile 32:
  
 
== Fullscreen access ==
 
== Fullscreen access ==
  screen frame buffer, read buttons via: [http://www.gp2xwiz.co.uk/wiki/Using_libcastor libcastor]
+
  * screen frame buffer, read buttons via: [http://www.gp2xwiz.co.uk/wiki/Using_libcastor libcastor] (slightly tilted&broken)
  [http://www.gp2xwiz.co.uk/wiki/Read_Microphone read microphone]
+
  * microphone access via [http://www.gp2xwiz.co.uk/wiki/Read_Microphone Read Microphone]
 +
 
 +
== OpenGL style drawing ==
 +
* [] todo opengl es
  
 
== Join the metalab development forces ==
 
== Join the metalab development forces ==
  
* [[Wiz Ideas]]
 
 
** Shell
 
** Shell
** Hardware Addon: Multiplayer connector (Nullmodem Kabel Style)
+
** Hardware Addon: Multiplayer connector (Nullmodem Cable)
*** Easy Program Transfer
+
*** Easy Program Transfer [["Wiz Game Store"]]
  
 
* [[Wiz Cross Compilation Efforts]]  
 
* [[Wiz Cross Compilation Efforts]]  
 
** ScummVM?
 
** ScummVM?
** Quake III anyone?
+
** Quake III anyone? (opengl es + lowest LoD quality level)
  
 
==Tipps==
 
==Tipps==
Terminal Application for root shell on the wiz [http://www.tuxbrain.com/en/en/port-de-termula2x-para-gp2x-wiz termula2x port to the Wiz]
+
Terminal Application for root shell on the wiz [http://dl.openhandhelds.org/cgi-bin/wiz.cgi?0,0,0,0,8,163 termula2x port to the Wiz]
 
 
  
 
==Troubleshooting==
 
==Troubleshooting==
''The following issue seems to be solved as of '''Wiz Firmware v1.1''' but anyway - here is how to solve it if it should ever appear again!''
+
''The following issue seems to be solved as of [http://dl.openhandhelds.org/cgi-bin/wiz.cgi?0,0,0,0,42 Wiz Firmware v1.1] (or later?) but anyway - here is how to solve it if it should ever appear again!''
  
 
When the Wiz runs out of battery while gaming it can happen that the Flash drive (internal NAND or SD Card) is left in a bad state. Symptoms are - no write access to the drive, no savegames and the like.
 
When the Wiz runs out of battery while gaming it can happen that the Flash drive (internal NAND or SD Card) is left in a bad state. Symptoms are - no write access to the drive, no savegames and the like.
Zeile 67: Zeile 73:
 
It might also be possible to simply reformat the Wiz's drive because the actual Linux System on the Wiz does not reside in the visible NAND drive but this hast not been tested - Just try it and tell if you ruined your Wiz, or not :-)
 
It might also be possible to simply reformat the Wiz's drive because the actual Linux System on the Wiz does not reside in the visible NAND drive but this hast not been tested - Just try it and tell if you ruined your Wiz, or not :-)
  
 +
 +
[[Kategorie:Wiz]]
 +
[[Kategorie:Gamedev]]
 
[[Kategorie:Gaming]]
 
[[Kategorie:Gaming]]
[[Kategorie:Gamedev]]
 
 
[[Kategorie:English]]
 
[[Kategorie:English]]

Version vom 23. August 2009, 14:48 Uhr

GP2X Wiz.jpg

Getting Started

  • buy a wiz
  • see games supercollide


intrigued:

Setup the toolchain

http://www.gp2xwiz.co.uk/wiki/Setting_up_the_tool_chain_on_Linux
* download
* extract & go to folder
* compile wizTest.c

== Experiment with

  char c = getchar();
  putchar(c);

Fullscreen access

* screen frame buffer, read buttons via: libcastor (slightly tilted&broken)
* microphone access via Read Microphone

OpenGL style drawing

* [] todo opengl es

Join the metalab development forces

    • Shell
    • Hardware Addon: Multiplayer connector (Nullmodem Cable)

Tipps

Terminal Application for root shell on the wiz termula2x port to the Wiz

Troubleshooting

The following issue seems to be solved as of Wiz Firmware v1.1 (or later?) but anyway - here is how to solve it if it should ever appear again!

When the Wiz runs out of battery while gaming it can happen that the Flash drive (internal NAND or SD Card) is left in a bad state. Symptoms are - no write access to the drive, no savegames and the like.

While it is always easy to take out the SD Card and repair or format it on a computer this is not possible with the internal NAND storage. Here is how to do it:

- Connect the Wiz to a computer using the supplied USB Cable

- Turn on the Wiz and tell it to mount the NAND storage when the dialog pops up asking (A-Button)

Linux: Figure out where the Wiz mounted. I will use /dev/sdf for the sake of this example but it will be different on different machines! Then unmount the Wiz from the Linux Box, get root and run fsck -a /dev/sdf until no more errors are reported.

MacOS X: Open Disk Utility (Festplatten Dienstprogramm) and simply use it's repair function on the mounted Wiz drive. Alternatively you can use the command line just like under Linux but with a little different syntax (hint: fsck_msdos -y /dev/disk1)

Windows: Find the Wiz's drive letter, right-click on it and find the drive repair function.

- Reboot the Wiz, it should now work fine again.


It might also be possible to simply reformat the Wiz's drive because the actual Linux System on the Wiz does not reside in the visible NAND drive but this hast not been tested - Just try it and tell if you ruined your Wiz, or not :-)