###前提・実現したいこと
AtmelStudioを使ってC言語のLチカ用コードを書いています。マイコンは「ATMEL21E16B」を使用しています。以下、コード作成の参考にしているサイトです。
Quick Start Guide for PORT - Basic
###発生している問題・エラーメッセージ
'BUTTON_0_PIN' undeclared (first use in this function) 'LED_0_PIN' undeclared (first use in this function)
###該当のソースコード
c
1/** 2 * \file 3 * 4 * \brief Empty user application template 5 * 6 */ 7 8/** 9 * \mainpage User Application template doxygen documentation 10 * 11 * \par Empty user application template 12 * 13 * Bare minimum empty user application template 14 * 15 * \par Content 16 * 17 * -# Include the ASF header files (through asf.h) 18 * -# Minimal main function that starts with a call to system_init() 19 * -# "Insert application code here" comment 20 * 21 */ 22 23/* 24 * Include header files for all drivers that have been imported from 25 * Atmel Software Framework (ASF). 26 */ 27/* 28 * Support and FAQ: visit <a href="http://www.atmel.com/design-support/">Atmel Support</a> 29 */ 30#include <asf.h> 31 32void configure_port_pins(void); 33 34 35int main (void) 36{ 37 system_init(); 38 configure_port_pins(); 39 40 /* Insert application code here, after the board has been initialized. */ 41 while (true) { 42 bool pin_state = port_pin_get_input_level(); 43 44 port_pin_set_output_level(PIN_PA16, !pin_state); 45 } 46} 47 48void configure_port_pins(void) 49{ 50 struct port_config config_port_pin; 51 port_get_config_defaults(&config_port_pin); 52 53 config_port_pin.direction = PORT_PIN_DIR_INPUT; 54 config_port_pin.input_pull = PORT_PIN_PULL_UP; 55 port_pin_set_config(BUTTON_0_PIN, &config_port_pin); 56 57 config_port_pin.direction = PORT_PIN_DIR_OUTPUT; 58 port_pin_set_config(LED_0_PIN, &config_port_pin); 59}
###補足情報(言語/FW/ツール等のバージョンなど)
モジュールは以下を読み込んでいます。
Generic board support(driver)
PORT - GPIO Pin Control(driver)
SYSTEM -Core System Driver(driver)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2017/11/08 01:08