Hi,
Since I found nothing about it, I thought I might ask here.
Is there or has there been a project like realising a digital audio out for the psp.
I guess the sio port is too slow. But it should be possible for stereo signal over usb port.
Is there such a project, and if no - why not?
Digital audio out
There is a sample by moonlight which can capture the audio output. There are plenty of examples on how to communicate with USB. There is enough bandwidth to pump out the uncompressed audio through USB. Only thing is you need a custom program on the host side. Unless you take the effort to present a usb audio device to the host.
-
- Posts: 4
- Joined: Thu Mar 26, 2009 4:35 am
maybe I didn't make myself clear - my wish is to push the digital audio signal out from the psp (over the usb plug - since there's no alternative) and plug it direclty - over some fancy adapter thing - into a av receivers digital coax in.
The adapter thing should be nothing more than a soldered cable connection.
Maybe some active or passive devices (resistor) for the right voltage level.
The adapter thing should be nothing more than a soldered cable connection.
Maybe some active or passive devices (resistor) for the right voltage level.
-
- Posts: 4
- Joined: Thu Mar 26, 2009 4:35 am
>even then it would simply be a USB plug on the cable and not actual USB communication
I don't want actual USB connection. I just want the usb plug :)
>There is no way you can manipulate a standard USB port at that level as it uses differential levels.
What do you mean by differential levels. Just to satisfy my greed for understanding:
Now - is it possible to send pure raw (user generated) bitwise data over the usb port. If this is possible everything else should be no problem
I don't want actual USB connection. I just want the usb plug :)
>There is no way you can manipulate a standard USB port at that level as it uses differential levels.
What do you mean by differential levels. Just to satisfy my greed for understanding:
Now - is it possible to send pure raw (user generated) bitwise data over the usb port. If this is possible everything else should be no problem
The voltage produced at the Tx/Rx is the output after the hardware level protocol packaging. You wouldn't be able to to communicate with non-USB compliant hardware unlike a serial port which can be wired up to all kinds of inputs since you have direct control of on/off on the pins. Unfortunately the serial port is too slow for your needs.phlashgringo wrote:What do you mean by differential levels. Just to satisfy my greed for understanding:
Now - is it possible to send pure raw (user generated) bitwise data over the usb port. If this is possible everything else should be no problem
I think the only thing you can do is manipulate the headphone out. Capture the audio in software, prevent it from playing through the output (if thats even possible; maybe mute the channel in use while still being able to capture data??) Convert the captured audio into spdif data and turn it into a waveform. Play the waveform and you should have spdif output at the headphone socket. You'll need a level converter or whatever to convert the voltages at the headphone output to spdif standards.
-
- Posts: 4
- Joined: Thu Mar 26, 2009 4:35 am
Oh, bad luck - so there is no way for unpackaged raw data, I see.The voltage produced at the Tx/Rx is the output after the hardware level protocol packaging.
Thanks for your idea with the headphone jack. Do you maybe have a good information source at hand for psp system programming resources. I think I have something lying around ... but if you got something relating in your pocket - you're welcome :)