Virtual Com example problem

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Virtual Com example problem

Jump to solution
796 Views
hubertmelchert
Contributor I

I'm trying to run virtual com example on TWR70. I'm using IAR and Freescale MQX 3.8. The program seems to run without problems. On my PC i can see unknown USB-SERIAL device. The problem is that no matter which .inf file I try system ignores it. Same thing happens on Win7 and WinXP. What am I doing wrong ?

Labels (1)
Tags (2)
0 Kudos
1 Solution
501 Views
soledad
NXP Employee
NXP Employee

Hello Hubert,

Please check the below threads and let me know if this helps,

Questions about "virtual_com" USB CDC driver in MQX 3.6 & under CW10

CDC on K60


Have a great day,
Sol

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

View solution in original post

0 Kudos
4 Replies
502 Views
soledad
NXP Employee
NXP Employee

Hello Hubert,

Please check the below threads and let me know if this helps,

Questions about "virtual_com" USB CDC driver in MQX 3.6 & under CW10

CDC on K60


Have a great day,
Sol

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos
501 Views
hubertmelchert
Contributor I

That helped me to install drivers. Now there is another problem. I can't open serial port that show up in system. While debugging an example i noticed that the program can't go through enumeration process. Any idea why ? I'm using example from MQX 3.8 directory without any changes.

0 Kudos
501 Views
soledad
NXP Employee
NXP Employee

Hello Hubert,

Could you please add a screenshot of this issue??

Have a nice day!

Sol

0 Kudos
501 Views
hubertmelchert
Contributor I

while (TRUE)

    {

        /* call the periodic task function */    

        USB_CDC_Periodic_Task();         

       /*check whether enumeration is complete or not */

        if((start_app==TRUE) && (start_transactions==TRUE))

        {      

            Virtual_Com_App();     //Virtual_Com_App() can't be executed because start_app and start_transactions ale FALSE

        }          

    }/* Endwhile */ 

}

0 Kudos