1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

NXP MCUXpressoを使ってみる

Posted at

NXP純正IDEであるMCUXpresso

MCUXpressoの触りだけでも知りたかったので、少々トライした記録である。

環境

秋月電子で購入可能なLPC11U35が搭載されたボードを利用。安価だったためこれを選択。Windows10上でMCUXpressoを使う。

MCUXpressoダウンロード

ここからダウンロードできる。NXPのアカウントが必要だった(はず)。

準備

SDKなどを使うのが通常のようだが、LPC11U35については、MCUXpressoで使えるのか不明であった。その代わりに、ここのResourcesにあったサンプルソースコードをインポートする方法をとった。
OpenProjectFileSystem.png
「Open Projects from File System」を選び、
SelectedFromArchive-Finish.png
「Archive」をクリックし、さきほどDownloadしたサンプルコードのzipファイルを選ぶ。サンプルコードとなる”s_demo”(メインプログラム)とLibrary2つを選択し「Finish」をクリック。インポート後は下記のようになる。
AfterImported.png

テスト環境

本ボードに接続されたボタンを押したら、ボード内のLEDが点灯することを実現する。

ボタンはGPIO0_22に接続されている(LEDはGPIO0_7に接続)。ピン配置については、秋月電子の本ボードのリンク先(説明書データーシート)も参照。

コード作成準備

さきほどのs_demoをコピーして作るのが簡単。下記メニューのCopy&Paste。
PrjCopyPaste.png
ここでは、Paste時に「btn_led」というプロジェクト名をつけた。
RenamePrj.png
BtnLEDProj.png
ライブラリとして、先ほどのインポート時のライブラリが含まれていることを確認。
必要なライブラリ.png

コード

main.cを下記のように修正。

main.c
# ifdef __USE_CMSIS
# include "LPC11Uxx.h"
# endif

# include <cr_section_macros.h>
# include <NXP/crp.h>

# include "gpio.h"

// p0.7 is connected to LED3 on LPC11U35 QSB Board
# define LED_PORT 0  // Port for led
# define LED_BIT  7  // Bit on port for led
# define LED_ON   1  // Level to set port to turn on led
# define LED_OFF  0  // Level to set port to turn off led

// Variable to store CRP value in. Will be placed automatically
// by the linker when "Enable Code Read Protect" selected.
// See crp.h header for more information
__CRP const unsigned int CRP_WORD = CRP_NO_CRP ;

int main(void) {

  // Initialize GPIO
  GPIOInit();

  // Set LED pin as output
  GPIOSetDir(LED_PORT, LED_BIT, 1 );
  // Set 20 pin of port 0 as input
  GPIOSetDir(0, 20, 0);

  GPIOSetBitValue( LED_PORT, LED_BIT, LED_OFF );
  while (1) {
	  if (!GPIOGetPinValue(0, 20)) {
		  GPIOSetBitValue( LED_PORT, LED_BIT, LED_ON );
	  } else {
		  GPIOSetBitValue( LED_PORT, LED_BIT, LED_OFF );
	  }
  }
}

GPIO制御関数は、サンプルコード及びライブラリ内にあったgpio.c/hを参照した。なお、変数「CRP_WORD」は必要のようだ(削除するとBuildできない)。

ビルド

「Build Project」をクリック。
Build.png

バイナリ作成

本ボードをMass Storageとして認識させ、プログラムを転送するには、bin形式が必要。「Create binary」をクリック。
Binary.png
さらに、チェックサムを付加する必要があるらしい。コマンドプロンプトから付加する。
Prompt.png

F:\Workspace\NXP\proj\btn_led\Debug>checksum -p lpc11u35 -d btn_led.bin
Written checksum 0xefffed0d at offset 0x1c in file btn_led.bin
Previous value 0xefffed0d at offset 0x1c in file btn_led.bin

ボードへコピー

ここの説明にあるとおり、ボードのSW1とSW2とを押し、SW1を押したままSW2を話すと、ボードがUSB Mass Storageとして認識される。
Firmware.bin削除.png
「firmware.bin」を削除し、さきほどの「btn_led.bin」をコピーする。

実験

コピー後、リセットする(SW2を押す、USBケーブルの挿し直し)と、プログラムが動作する。

成功。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?