-
Notifications
You must be signed in to change notification settings - Fork 5
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
Pins from A8 to A11 cannot be used on Arduino Giga R1 #81
Comments
Hi @mzap-bit, Currently, the library does not support Thank you for reporting it. |
Hi @leonardocavagnis , You're welcome! Thank you for your great work! :) Just a small hint for the API doc: currently it is mentioned the Pins from A8 to A11 are actually supported, I've spent some time wondering what was wrong with my code trusting this info! A slight update might help other users! |
Hi, |
Hi @BenLesArd, Unfortunately, solving this issue isn’t as simple as adding the missing The definitions for these pins (A8, A9, A10, A11) are found in the One straightforward approach would be to create a dedicated constructor that handles only We won’t be able to work on this in the short term, but your help would be greatly appreciated! Thank you for your interest and Merry Christmas! 🎄 |
Hi Leonardo, I had some time to go deeper in the code. I have found analogPinToPinName (p) in mbed. (ArduinoCore-mbed/variants/GIGA/pins_arduino.h) I have read PureAnalogPin which are defined in mbed/variants/GIGA/pure_analog_pins.h and declared in ../pure_analog_pins.cpp. So far, I think that it would be better to be able to accept the both types of AnalogPin in the list of the constructor of AdvanceADC. What do you think? I still have to check what is that g_pureAAnalogPinDescription... (i have found the extern declaration in Arduino.h but I don't find where this is set...) Regards, Ben |
Done :) #86 Hope to fix it soon in the next release |
Here! |
Hello guys,
I am struggling to acquire a signal using A8,A9,A10, A11 pins of Arduino Giga R1.
Here's the modified example code I am using:
The code compiles, but the serial values are showing values as if the pin is floating (despite I have placed a 1k resistor to 3.3V).
The text was updated successfully, but these errors were encountered: