Serial port is not available in GUI but it actually available in my pc
Afficher commentaires plus anciens
Hi,
I wish to have simple GUI communicate serially with microcontroller (PIC) through UART. When press button1 in GUI, LED1 will light up. Press button2, LED2 will light up. I use USB to RS232 converter. In my computer management, under the port category, it shows USB-to-RS232 converter port (COM14). So I use COM14 in my GUI. Unfortunately, it shows an error when I run them. "??? Error using ==> serial.fopen at 72 Port: COM14 is not available. Available ports: COM5, COM12." Why COM14 is not available? But it shows in my computer management. when I use instrfind command, the following information I get:
>> instrfind
Instrument Object Array
Index: Type: Status: Name:
1 serial open Serial-COM14
2 serial closed Serial-COM14
3 serial closed Serial-COM14
4 serial closed Serial-COM14
What does it mean? why COM14 is open then closed? Thank you.
Réponses (3)
Walter Roberson
le 15 Juin 2011
Did you turn on the device after you started MATLAB? USB devices have to be fully connected before you start MATLAB or else you will not be able to use them.
If the problem continues, try
fclose(instrfind)
and then try to find the port.
2 commentaires
Yeoh
le 15 Juin 2011
Walter Roberson
le 15 Juin 2011
Just before the fopen(s), try adding
instrfind
You should expect to see one occurrence of COM1 (corresponding to its use in s) and anything else is Odd.
Yeoh
le 16 Juin 2011
5 commentaires
amey patil
le 22 Nov 2011
How to make use of COM port in serial communication ??
Do we have to declare it in matlab by saying that 'COM1' should be used for matlab??
I want to do this serial communication on COM1 and end device for communication is FPGA kit VIRTEX 5 ; can I do this???
IF yes then HOW??????
Kaustubha Govind
le 23 Jan 2012
See http://www.mathworks.com/help/releases/R2011b/techdoc/matlab_external/f38496.html
Harneel Singh Sagoo
le 24 Nov 2014
I am having the same issue, but i cannot Access the web page you have suggested, could you explain how to declare the COM port for matlab
Nishant Kumar
le 1 Mai 2015
Walter Roberson
le 4 Mai 2015
With regards to finding the COM port, see http://www.mathworks.com/help/matlab/matlab_external/overview-of-the-serial-port.html and look down to "Finding Serial Port Information for Your Platform"
Ankit Desai
le 15 Juin 2011
0 votes
There are a few things that you might want to check:
- Make sure the port is not used in any other application (such as hyperterminal, another instance of MATLAB etc.). If the port is used by any such application, it will not show up in MATLAB.
- If an object is created in MATLAB but not deleted and cleared correctly - it will not show up in subsequent attempt of using it.
From the output of instrfind, it appears that a serial object for COM14 was created but not cleaned up correctly (it is still available in the memory, which is why instrfind is finding it). Which means as per point 2 above, it will not be available when you try to create another object using the same port.
You might want to check the code to find all the places where you create a serial object and make sure that you are not trying to create multiple objects to the same port. You should use the same object for all your serial communication to that port.
Catégories
En savoir plus sur COM Component Integration dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!