Arduino board run on Mbed-os6.8.1 (only test purpose not official). Need Mbed Studio(1.3.1) not online compiler. If you compile on the online compiler, you can get a hex file but it does NOT work!!!
Dependencies: APDS_9960 LPS22HB LSM9DS1 HTS221
1) DAPLink(LPC11U35)の準備
使用したボード →https://akizukidenshi.com/catalog/g/gK-12144/
プログラムは、nRF52840-MDK用に公開されているDAPLinkのコンパイル済のバイナリコードを使わせていただきました。
https://github.com/makerdiary/nrf52840-mdk/tree/master/firmware/daplink
LPC11U35への書込みは、SW1(ISP)を押したままSW2(RESET)を操作するとPCに「CRP DISABLD」という名称でマウントされるので、書込まれているfirmware.binを削除してから、上記のbinファイルをコピーすれば書き込みが行われます。
書込み完了後にSW1を押さずに起動すれば、「DAPLINK」として認識されます。
DETAILS.TXTでDAPLinkの内容を確認できます。
2) 接続
Arduino Nano 33 BLE Sense | LPC11U35 Interface CPU | コメント |
J3:Pin2 (ボード裏のパッド) | CN1:Pin3 P0_7 | SWDIO |
J3:Pin3 (ボード裏のパッド) | CN1:Pin4 P0_8 | SWCLK |
JP2:Pin14 GND | CN2:Pin1 GND | GND |
3)USBSerial
シリアル出力は、NANO 33 BLE SENSEボードのUSB端子経由で出力されます。
4)Mbed Studio 1.3.1を使って開発のこと!(オンラインコンパイラでは動作しません!)
5)ボードピン配置
Diff: common_functions/check_revision.h
- Revision:
- 1:cce280da16d4
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common_functions/check_revision.h Sun Feb 28 07:31:58 2021 +0000 @@ -0,0 +1,25 @@ +/* + * Check Mbed revision + * + * Copyright (c) 2019,'20,'21 Kenji Arai / JH1PJL + * http://www7b.biglobe.ne.jp/~kenjia/ + * https://os.mbed.com/users/kenjiArai/ + * Created: July 17th, 2019 + * Revised: February 28th, 2021 + */ + +// RUN ONLY ON mbed-os-6.8.0 +// https://github.com/ARMmbed/mbed-os/releases/tag/mbed-os-6.8.0 +#if (MBED_MAJOR_VERSION == 6) &&\ + (MBED_MINOR_VERSION == 8) &&\ + (MBED_PATCH_VERSION == 0) +#else +# error "Please use mbed-os-6.8.0" +#endif + +void print_revision(void) +{ + print_usb("MBED_MAJOR_VERSION = %d, ", MBED_MAJOR_VERSION); + print_usb("MINOR = %d, ", MBED_MINOR_VERSION); + print_usb("PATCH = %d\r\n", MBED_PATCH_VERSION); +} \ No newline at end of file