-
-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working with Sparkfun Pro Micro #123
Comments
UPDATE:
|
I am having the exact same problem with the Adafruit Itsy bitsy. It seems to be able to send data over the serial connection, but it never receives any responses. |
I've just ordered an Itsy Bitsy so I can look into this. It probably won't be here until next week sometime, so if you come up with something in the meantime, please let me know. |
Thanks for such a quick response! |
Hey armadsen, I just wanted to check in and see if you got a chance to look at the Itsy Bitsy issue. |
Sorry, I did get one, just haven't had a chance to play with it yet due to being slammed with other stuff. I haven't forgotten! |
Hey armadsen, just checking in. Any way I can help in debugging? Id love to switch all my systems over to the Itsy Bitsy. Thanks! |
Not sure if you ever got a chance to look into this, but I have found that when I start the demo command line app, I can't get a connection or response from the Itsy Bitsy. If I then open up the "Serial Monitor" from the Arduino app, the connection comes to life and the demo app starts seeing the board. Not sure if that might help. |
The only real differences I see are @armadsen It sees the library lost its ability to communicate with Arduino boards as well in recent macOS versions. The fact that it works after the port is opened in another application makes me think there is something missing in the serial port or GCD initialization in ORSSerialPort. I looked into the source but did not find any clues. |
Thanks for the followup report, @Dirk-. I've left myself a note to try digging into this this weekend. |
I found a solution: Somehow, In the
It is not sufficient to set |
Hi,
with a Sparkfun Pro Micro that ships with a Atmel MEGA 32u4 I'm not able to receive any incoming data.
The code (arduino) I'm testing is the following:
It works with an Arduino seamlessly. With the Pro Micro this
line
is never reached.Actually there is a case in which the line is reached and it happens when a second serial application (cool term in my case) opens the serial communication with the pro micro; when open with an other program the data is received by both my application and cool term.
It seems to me that the connection is never really open (even if the open delegate method is triggered) and the data is not received.
Any ideas on what the problem might be?
The text was updated successfully, but these errors were encountered: