Search found 10 matches

by wazowski
Fri Sep 01, 2006 5:02 pm
Forum: PSP Development
Topic: Using Talkman USB Mic for sound recording usin Homebrew APP?
Replies: 29
Views: 20334

edited: sorry for the post
by wazowski
Mon Aug 28, 2006 8:25 pm
Forum: PSP Development
Topic: Using Talkman USB Mic for sound recording usin Homebrew APP?
Replies: 29
Views: 20334

Well actually everything I'm doing is including audio.h, -lpspaudio in my make file, and in my main.c : Code: extern s32 sceAudioInputInit(s32 a0, s32 a1, s32 a2); extern s32 sceAudioInput(s32 a0, s32 a1, void *a2); because they are already in the audio.S of the pspsdk. Then I call the init: sceAud...
by wazowski
Fri Aug 25, 2006 9:31 pm
Forum: PSP Development
Topic: Using Talkman USB Mic for sound recording usin Homebrew APP?
Replies: 29
Views: 20334

Hi Grizzly_cf, Ihave tried the MemoREcorder app. and it works fine. I´m using the remote adaptor and the socom headphone adaptor. And everything I said is recorder and then is played back. It works great with this adaptor configuration. Are you using what lteixeira has said? (this two adaptors) Here...
by wazowski
Fri Aug 25, 2006 6:11 pm
Forum: PSP Development
Topic: Using Talkman USB Mic for sound recording usin Homebrew APP?
Replies: 29
Views: 20334

Ok, now I'm looking at the right file ;) The implementation which is in pspaudiolib.c is quite straightforward: you have the thread function which invokes the callback in a while loop to get the buffer filled with data, and invokes the syscall to pass the buffer pointer to the audio hardware. You al...
by wazowski
Thu Aug 24, 2006 10:48 pm
Forum: PSP Development
Topic: Using Talkman USB Mic for sound recording usin Homebrew APP?
Replies: 29
Views: 20334

Ok, I think I´m starting to understand this. So the steps are... // Funtion for buffer reading // Callback thread calling function for buffer reading // Sets up the callback thread and start it. And the audio callback that's implemented in pspaudiolib is typedef void (* pspAudioCallback_t&am...
by wazowski
Thu Aug 24, 2006 4:52 pm
Forum: PSP Development
Topic: Using Talkman USB Mic for sound recording usin Homebrew APP?
Replies: 29
Views: 20334

Hi, So basically you are doing this -> 1) declaration of functions: extern s32 sceAudioInputInit(s32 a0, s32 a1, s32 a2); extern s32 sceAudioInput(s32 a0, s32 a1, void *a2); 2) start audio input: sceAudioInputInit(0,0x7000,0); 3) and then start recording... in every frame. if (recflag & 1) sceAu...
by wazowski
Wed Apr 12, 2006 4:08 am
Forum: PSP Development
Topic: about usbhostfs_pc
Replies: 18
Views: 7680

Dear wazowski : Pls read the user manuel of the psplink , the USB fucntion you said that can access file from PC on PSP is called "USB HOST FILING SYSTEM". "USB HOST" is the key word. If you dont know what is the meaning of "USB HOST", USB OTG is too tough for you. (or...
by wazowski
Wed Apr 12, 2006 12:10 am
Forum: PSP Development
Topic: about usbhostfs_pc
Replies: 18
Views: 7680

First Ill try to keep in topic. Now Im trying to leave psplink just with usb functions. I dont need wifi and other things. As I say before, I can load mp3 songs and, I think, images from the pc to the psp. I can play them and show them. But, and here is my question, How does usb file system works? I...
by wazowski
Fri Apr 07, 2006 3:41 am
Forum: PSP Development
Topic: about usbhostfs_pc
Replies: 18
Views: 7680

Thank you Tyranid for your fast answer. I want to change the name just becuse I´m from spain and I want to make all the GUI in spanish, nothing else. Just another question, watching how psplink works with the usb, I was wondering if its posible read the information sended by a usb OTG device. I mean...
by wazowski
Fri Apr 07, 2006 1:40 am
Forum: PSP Development
Topic: about usbhostfs_pc
Replies: 18
Views: 7680

about usbhostfs_pc

Hello, nowadays I´m working with usbhostfs from psplink. It´s a very good aplication (congratulations Tyranid, you´re the best). I have made changes to a file viewer that I did myself, and I´m able to navigate from the psp in the pc files, in fact I can play music from pc in the psp. It´s very unuse...