-
Notifications
You must be signed in to change notification settings - Fork 3k
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 Waveshare BLE400 #5478
Comments
Have you asked Waveshare if they are considering this addition ?
You can always share your current work done (in case there is more work needed besides the pin names you shared above). Is there?
It seems there is Uart to usb converter on board, but not interface chip. No drag-n-drop programming? |
I've also tried running mBed on this board and I'm not sure why it doesn't work properly. #include <mbed.h>
DigitalOut pin(P0_19);
int main() {
while (true) {
pin = 1;
wait(0.5);
pin = 0;
wait(0.5);
}
return 0;
} I flashed the above code with an ST-Link v2 but the LED did not blink. Haven't had a chance to debug it yet. I was using this target: https://github.com/ARMmbed/mbed-os/tree/master/targets/TARGET_NORDIC/TARGET_MCU_NRF51822/TARGET_RBLAB_BLENANO |
You should try target BBC micro:bit. It worked for me. |
@danielkucera That worked for me as well. Thanks! Maybe it was just an issue w/ the board's configured clock speed? |
@scttnlsn No problem, I spent hours on making it work so I'm glad it helped. I don't know where the problem is, you can compare configs for those targets to see. |
ARM Internal Ref: MBOTRIAGE-134 |
There are currently no plans to support this target in Mbed OS. Issue can be closed. Please reopen if required. Thanks. |
So how does one develop embedded systems - where the board configuration does not follow any of Mbed standard defines boards? |
@SoniaZotz : You are definitely welcome to port Mbed OS to this new target (& we'd be happy to answer questions you may have in the porting process), however, the above comment was to mention that there are no plans to add this target to the list of officially supported platforms from Mbed side.. cc @0xc0170 |
@SoniaZotz If you have any questions , create a new issue with specific question regarding porting new target. Good starting point is https://os.mbed.com/docs/latest/reference/porting-targets.html |
@SoniaZotz, I'm willing to help with porting and/or testing. Maybe we could start by forking |
thank you all for your quick response. It answered a few questions for me and resulted in a few more. |
@SoniaZotz ..
cc : @AnotherButler & @bulislaw (for point 3, refer: ARMmbed/mbed-os-5-docs#625) |
Please provide feedback to https://github.com/ARMmbed/mbed-os-5-docs about the documentation (create new issue if its already not there with suggestions or questions you have regarding this porting doc page). I've just noticed now 625 that is referenced above. Update ongoing! |
If the BBC microbit setting works for the ble400 (technically the core51822r3), has anyone tried to see if the Switch Science ty51822r3 can also be used. The specs on this seem a closed match than those of the BBC microbit (32k ram vs 16th ram), and this would allow mbed os 5 to be used |
Description
Enhancement
Is it possible to add support for Waveshare BLE400 board ?
I tried to do it myself but without success.
The Pins should be edited in this way:
I'm not sure for RX, TX and CTS, RDS, but if the changes are made, I could test it and correct the files.
The text was updated successfully, but these errors were encountered: