Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. It's 100% free, no registration required.

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I am new to Arduino and bit blur on how it works. lack of info on the net about it. please help me with these questions!

  1. Does Arduino due allow you to upload a program on programming port and then run it through Native port?

  2. Can I work with SerialUSB instance in Programming port?

share|improve this question
1  
lack of info on the net about it Then you can't be looking very hard. – Majenko Feb 26 at 10:22
up vote 1 down vote accepted

Does Arduino due allow you to upload a program on programming port and then run it through Native port?

You don't run a program through anything. You run it on the Due. Where you send text to is entirely up to you.

Can I work with SerialUSB instance in Programming port?

I have no idea what you are asking there. Both the Programming port and Native port are capable of being used as virtual USB COM ports. They use CDC/ACM. One is directly connected to the SAM3X chip's USB peripheral, and the other is connected to the SAM3X's UART interface via another microcontroller as a USB to UART converter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.