-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add support for Makerdiary nRF52840 MDK dongle #46
base: master
Are you sure you want to change the base?
Conversation
@Brezensalzer This PR is useful for not only my openthread enabled arduino. (In actual, I maintain this project with mainly merge upstream updates only. It will keep world peace if you push to upstream project. :-) I wrote any I noticed to the PR review. |
@@ -16,7 +16,7 @@ | |||
# License along with this library; if not, write to the Free Software | |||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |||
|
|||
menu.softdevice=SoftDevice | |||
menu.softdevice=Bootloader |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it need to change?
boards.txt
Outdated
@@ -57,7 +57,7 @@ feather52840.build.vid=0x239A | |||
feather52840.build.pid=0x8029 | |||
|
|||
# SofDevice Menu | |||
feather52840.menu.softdevice.s140v7=S140 7.0.1 | |||
feather52840.menu.softdevice.s140v7=0.3.2 SoftDevice s140 7.0.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto.
variants/mdk_nrf52840/variant.h
Outdated
static const uint8_t A1 = PIN_A1 ; | ||
static const uint8_t A2 = PIN_A2 ; | ||
static const uint8_t A3 = PIN_A3 ; | ||
static const uint8_t A4 = PIN_A0 ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be
A4 = PIN_A4
boards.txt
Outdated
|
||
# VID/PID for bootloader with/without UF2, Arduino + Circuitpython App | ||
mdk52840.vid.0=0x239A | ||
mdk52840.pid.0=0x80DD |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmation: Where did the values 0x80DD and 0x802A come from? (I couldn't found in the bootloader source.)
Hello soburi, This PR is useful for not only my openthread enabled arduino. You have a point there. I will make a pull request on the upstream Adafruit repository. |
That's good!
hmm... I think it's better to remove it. |
Digital Pins, I2C, SPI, Serial (USB) and OpenThread was successfully tested.
Thank You for Your support!