Micom_Electric/ARM_STM32
2016. 6. 28. 22:53
Arduino STM32F1xx -
32비트 고성능 아두이노
아두이노 설치하고
위 사이트에서
Installation on Windows
단 STM32 패키지는 1.6.5 버전에 설치
- 현재 1.6.8 아두이노는 컴파일 에러 !!!
=========================
설치하고
아두이노 스케치 하나 실행
// the setup function runs once when you press reset or power the board
const int LED5 = PC12;
void setup() {
// initialize digital pin PB1 as an output.
//pinMode(PB1, OUTPUT);
pinMode(LED5, OUTPUT); // Rabbit Board 64pin type
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED5, HIGH); // turn the LED on (HIGH is the voltage level)
delay(50); // wait for a second
digitalWrite(LED5, LOW); // turn the LED off by making the voltage LOW
delay(100); // wait for a second
}
=========================