Hello,
I would like to ask if somebody tried an examples USB - SDK_2.2_LPCXpresso54608.zip?
I tried boards\lpcxpresso54608\usb_examples\usb_device_cdc_vcom and boards\lpcxpresso54608\usb_examples\usb_host_hid_mouse and these examples doesn't work...I use LPCexpresso V10.
Thank you
I suspect that when you import the project, you have semihosting output enabled (so that printf, for example, is displayed into the IDE's debugger console view). If you then try to execute the application other than via the debugger then the semihosting operation will fail and cause the application to enter the hard fault handler. This may well prevent your application reaching the point where USB is enabled - hence why you might not be seeing the vcom port.
See the supplied MCUXpresso IDE v10.0.2 User Guide for more details, with good places to start being:
Regards,
MCUXpresso IDE Support
Hello,
I resolved the problem:smileyhappy:
I
And I think, that for the character sending has to use: usb_echo function. But then I did debug and I found, that I have to use another mechanism:
while (1)
{
APPTask();
s_sendSize = 3;
s_currSendBuf[0] = 'A';
s_currSendBuf[1] = 'A';
s_currSendBuf[2] = 'A';
And it works:)
I think, that SDK examples needs one example with a basic function for users, which are moving on LPC546xx from lower series...
Thx
Hello,
I tried example:
boards\lpcxpresso54608\usb_examples\usb_device_cdc_vcom_lite
I import this SDK example from SDK_2.2_LPCXpresso54608.zip in LPCexpresso v10. Then I translated this example in LPCexpresso and then I load the *.axf into processor. And nothing happens.
In this example there is file:
boards\lpcxpresso54608\usb_examples\usb_device_cdc_vcom_lite\bm\dev_cdc_vcom_lite_bm.bin
So I boot the processor into USB DFU mode, I rewrite file dev_cdc_vcom_lite_bm.bin on firmware.bin and then I load this file into processor. And it works :smileyhappy:
Hi,
Please try the suggestions you can find in the below thread:
SDK_2.1_FRDM-K66F USB Device CDC VCOM
Please let me know if this helps!
Have a great day,
Soledad
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------
Hi,
no it doesn't work. I import an example from sdk, translate the code and load the code into a processor. But it doesn't work. I use MCUXpresso IDE v10.0.2_411 and in the forum ther is EWARM 7.80.4....
I don't see any VCOM port...