Search found 12 matches

by Jai_Guru
Fri Feb 16, 2007 10:25 am
Forum: PSP Development
Topic: [ANN] Python for PSP
Replies: 22
Views: 10728

Can VPython be used with this?
http://www.vpython.org/
by Jai_Guru
Sat Feb 03, 2007 3:11 am
Forum: PSP Development
Topic: PSP Oscilloscope
Replies: 9
Views: 4766

I think what a want it's not an Oscilloscope but a logic analyzer.

I'm only interested on binary voltage levels.

Is there a way to know if a pin on USB or Serial Port is high or low?

what other method of input could be used?
by Jai_Guru
Thu Feb 01, 2007 5:34 pm
Forum: PSP Development
Topic: PSP Oscilloscope
Replies: 9
Views: 4766

My next question will be a bit off topic but I hope it's not a big problem.

I found an old sound card and I wonder if I could avoid the DC measuring problem by removing and bypassing the capacitors right next to the line in and mic plug.

Any opinions?
by Jai_Guru
Thu Feb 01, 2007 4:34 pm
Forum: PSP Development
Topic: PSP Oscilloscope
Replies: 9
Views: 4766

I found this page that could be useful.

http://www.qsl.net/om3cph/sb/dcwithsb.htm

It explains the problems of using a sound card to measure DC signals. I haven't finished reading it but it looks like a valuable resource.
by Jai_Guru
Thu Feb 01, 2007 3:07 am
Forum: PSP Development
Topic: PSP Oscilloscope
Replies: 9
Views: 4766

Thanks for the reply. Sorry, but i'm not very experienced with hardware. You will run into a problem trying to measure DC voltages, though, because there is usually a capacitor in the input before the ADC. As I said before, the main use i want to give this is to measure signals from microlcontrolers...
by Jai_Guru
Wed Jan 31, 2007 4:33 pm
Forum: PSP Development
Topic: PSP Oscilloscope
Replies: 9
Views: 4766

What circuit do I need to build to connect 5v TTL signals to the audio input of my PSP and not ruin it?
by Jai_Guru
Tue Jan 16, 2007 4:53 pm
Forum: PSP Development
Topic: PSP Oscilloscope
Replies: 9
Views: 4766

I'm not sure about USB, hardwarewise it gets much more complicated. My aim is to analyze the signals sent by a keyboard, pulses sent to a servo motor to control it or maybe signals sent on serial communication. This signals operate at frequencies lower than 44kz so I don't think this would be a prob...
by Jai_Guru
Mon Jan 15, 2007 6:55 pm
Forum: PSP Development
Topic: PSP Oscilloscope
Replies: 9
Views: 4766

PSP Oscilloscope

I would like to use my PSP as an oscilloscope by connecting the input voltage to the analog audio input. The main use of this would be to make measurements on micro controller circuits with TTL voltage levels (6V-0V). Does somebody know what is the range of voltages supported by the audio input? Has...
by Jai_Guru
Thu Jan 11, 2007 2:59 am
Forum: PSP Development
Topic: how do I build psp microphone?
Replies: 2
Views: 1610

This subject has been discussed several times. Search the forums.

http://boardsus.playstation.com/playsta ... id=1372088
by Jai_Guru
Thu Jan 04, 2007 7:21 am
Forum: PSP Development
Topic: Detection Problems
Replies: 3
Views: 1839

The structure of your program is not right. You shouldn't define functions inside the main function. Also there's another thing. int sceUmdCheckMedium(void) { if (0) { //Trying to say 'if it returns 0' printf("No UMD inserted\n"&...
by Jai_Guru
Sun Aug 13, 2006 9:54 am
Forum: PSP Development
Topic: Reading from a Socket
Replies: 2
Views: 1304

How can I read buffer in chunk?

When I try to do it, the string sent by the server is split as I explained on my first post.

What alternatives do I have other than using 'read' ?
by Jai_Guru
Sun Aug 13, 2006 8:11 am
Forum: PSP Development
Topic: Reading from a Socket
Replies: 2
Views: 1304

Reading from a Socket

I'm trying to create a client program that connects to a server on my computer. When I try to receive on the PSP a string sent by the server I only receive one character at first and then the rest of the string. This is the code I use: while(1) { bzero(&buffer, s...