I was reading the N64 post, and read ..
Could someone clear this up for me? Is he talking about the XGP? (Which is GP next handheld?) Or another handheld? I thought the two companies were completly seperate?
Mike
Reading these results and trying to understand them.. The vsync is the number of frames its drawing onto the screen, where its changed or not. So this is the maximum current FPS.
So Ridge Racer Type 4.. Intro..
26 + 39 / 2 =~ 32.
3 + 7 / 2 = 5.
ratio of 5:32. Which says to me that its the...
You could link the two folders, The location is prolly /mnt/sda/
to link two folders,
ln -s /mnt/sd1 /mnt/sda
as long as the card folder is /mnt/sd1 and the ext drive is /mnt/sda
Mike
...code again, and noticed that the ticks stuff is constaint, or could be.
Fixed Point Divide Function
#define div(a,b) (int) ( ((((2^32)+b-1) / b) * (a)) / (2^32) )
Add to the minlib
//predefined.. so no math done here =)
#define ticks_per_second (7372800 / 1000)
#define ticks_math...
Ok, im very new to this =) Could someone help me?
Ive got the manual above /\... and im trying to understand it abit...
Lets take the contrast as an example... (p434).
I presume that the 0-2 bits are the contrast settings. with a value of 0-7 (so 3bits)..
Now how exactly do i access that?
Mike
Hi there,
Could someone point me in to the best place(s) of a list of what hardware there is avaible, what it can do and a small tutorial of how it works?
Id like to learn about all hardware stuff the GP2x can offer, such as the blitter, sound, LED, etc..
Cheers
Mike
Sure
To be able to run something on the GP2X, you would have to install the SSH deamon. I believe it uses the busybox distro, and i think there is a deamon for it. - I have no idea how easy/hard it will be to add it in.
once (and if) you get it running on the GP2x, you can then do (from your...
SSH is a Secure SHell. If your GP2x has the ssh deamon running, it will enable you to tunnel over to your gp2x and use the terminal to do... well anything.
If your a developer, this will be very useful, as you can use it to get debug information and error reports. Normal users could use it as a...
I think that there is so many people in this forum that know what there talking about, GPH would be stupid not to make the design proccess for the GP3x "Open source" as well.
I suggest, and HOPE that GPH (in a few years when they decide to make a new handheld) Post some of there final...
Its flips the Horizontal (i think?). It (should) flip any rectanglar area of the buffer.
e.g
{ 1,2,3
4,5,6
7,8,9 }
should become
{ 3,2,1
6,5,4
9,8,7 }
Mike
I think it needs an offset value for the X, so at the mo its only for the whole screen.
I think we see a gp2x library differently, altho you are correct.
I see it as more as an abstract layer, that intergrates into the program alot more than something u link to and call functions from.
with the gettimeofday() thing, r's minimal has a tick function which would be "better"?
Its...
Hi there,
I've looked over your code. Its not bad, Ive been currently working on improving the minimal lib code, I also found the code a bit messy. My current plans are to intergrate compile options into the lib, (Such as -DBLIT -DSOUND etc) to give it a bit more flexability, and to just...