NUCLEO: Porovnání verzí
Skočit na navigaci
Skočit na vyhledávání
(Nejsou zobrazeny 3 mezilehlé verze od stejného uživatele.) | |||
Řádek 2: | Řádek 2: | ||
[[Soubor:Cortex Challenge 2015.png|link=http://measure.feld.cvut.cz/soutez/soutez2015]] | [[Soubor:Cortex Challenge 2015.png|link=http://measure.feld.cvut.cz/soutez/soutez2015]] | ||
{| class="toccolours" cellpadding="5" style="float: right; clear: right; margin: 0 0 1em 1em; font-size: 85%; width: 25em" | |||
| colspan="2" style="text-align: center; font-size: larger; background-color: lightblue;" | '''''Cortex''''' | |||
|- style="vertical-align: top;" | |||
|Nucleo KIT | |||
[[Soubor:Cortex Challenge 2015 01.png|link=https://developer.mbed.org/platforms/ST-Nucleo-F030R8/|Vývojový kit|right]] | [[Soubor:Cortex Challenge 2015 01.png|link=https://developer.mbed.org/platforms/ST-Nucleo-F030R8/|Vývojový kit|right]] | ||
= | |- style="vertical-align: top;" | ||
|Nucleo pinout | |||
Arduino-compatible headers | Arduino-compatible headers | ||
[[Soubor:Nucleo pinout.png| | [[Soubor:Nucleo pinout.png|400px]] | ||
Morpho headers | |||
These headers give access to all STM32 pins. | These headers give access to all STM32 pins. | ||
[[Soubor:Morpho headers.png| | [[Soubor:Morpho headers.png|400px|right]] | ||
{{#widget:YouTube|id=BrMw5TNQROo|height=270|width=360|Getting started with ARM mbed Integrated Development Environment|right}} | |||
|} | |||
== Source code == | |||
IDE: | |||
== | [[Soubor:mbed.png|link=https://developer.mbed.org/compiler/|IDE]] | ||
Compiler: | |||
[[Soubor:mbed-compiler.png|link=https://os.mbed.com/accounts/login/?next=%2Fide%2F|compiler]] | |||
Example: | |||
<source lang="cpp"> | <source lang="cpp"> | ||
Řádek 29: | Řádek 44: | ||
#include "mbed.h" | #include "mbed.h" | ||
DigitalOut myled(LED1); | DigitalOut myled(LED1); | ||
Řádek 90: | Řádek 103: | ||
<source lang="cpp"> | <source lang="cpp"> | ||
#include "mbed.h" | #include "mbed.h" | ||
Řádek 109: | Řádek 121: | ||
} | } | ||
} | } | ||
</source> | </source> | ||
=== [https://developer.mbed.org/teams/ST/code/Nucleo_read_button_interrupt/?platform=ST-Nucleo-F030R8 Nucleo read button interrupt] === | |||
=== | <source lang="cpp"> | ||
#include "mbed.h" | |||
InterruptIn mybutton(USER_BUTTON); | |||
DigitalOut myled(LED1); | |||
float delay = 1.0; // 1 sec | |||
void pressed() | |||
{ | |||
if (delay == 1.0) | |||
delay = 0.2; // 200 ms | |||
else | |||
delay = 1.0; // 1 sec | |||
} | |||
int main() | |||
{ | |||
mybutton.fall(&pressed); | |||
while (1) { | |||
myled = !myled; | |||
wait(delay); | |||
} | |||
} | |||
</source> | |||
=== [https://developer.mbed.org/teams/ST/code/Nucleo_pwm2/?platform=ST-Nucleo-F030R8 Nucleo_pwm2] === | |||
<source lang="cpp"> | <source lang="cpp"> | ||
#include "mbed.h" | |||
DigitalOut my_led(LED1); | |||
InterruptIn my_button(USER_BUTTON); | |||
PwmOut my_pwm(PB_3); | |||
void pressed() { | |||
if (my_pwm.read() == 0.25) { | |||
my_pwm.write(0.75); | |||
} | |||
else { | |||
my_pwm.write(0.25); | |||
#include " | } | ||
} | |||
int main() | |||
int main( | |||
{ | { | ||
// Set PWM | |||
my_pwm.period_ms(10); | |||
my_pwm.write(0.5); | |||
// Set button | |||
my_button.fall(&pressed); | |||
while (1) { | |||
my_led = !my_led; | |||
wait(0.5); // 500 ms | |||
} | |||
} | } | ||
</source> | |||
=== [https://developer.mbed.org/teams/ST/code/Nucleo_read_analog_value/file/6d058686efbf/main.cpp Nucleo_read_analog_value] === | |||
<source lang="cpp"> | |||
#include "mbed.h" | |||
AnalogIn analog_value(A0); | |||
DigitalOut led(LED1); | |||
int main() { | |||
float meas; | |||
printf("\nAnalogIn example\n"); | |||
while(1) { | |||
meas = analog_value.read(); // Converts and read the analog input value (value from 0.0 to 1.0) | |||
meas = meas * 3300; // Change the value to be in the 0 to 3300 range | |||
printf("measure = %.0f mV\n", meas); | |||
// | if (meas > 2000) { // If the value is greater than 2V then switch the LED on | ||
led = 1; | |||
} | |||
else { | |||
// | led = 0; | ||
} | |||
wait(0.2); // 200 ms | |||
} | |||
} | } | ||
</source> | |||
=== [https://developer.mbed.org/teams/ST/code/Nucleo_pwm3/file/8d83d0909665/main.cpp Nucleo_pwm3] === | |||
<source lang="cpp"> | |||
#include "mbed.h" | |||
Timeout timer; | |||
DigitalOut my_led(LED1); | |||
DigitalOut my_pwm(D10); // IO used by pwm_io function | |||
int on_delay = 0; | |||
int off_delay = 0; | |||
void toggleOff(void); | |||
void toggleOn(void) { | |||
my_pwm = 1; | |||
timer.attach_us(toggleOff, on_delay); | |||
} | |||
void toggleOff(void) { | |||
my_pwm = 0; | |||
timer.attach_us(toggleOn, off_delay); | |||
} | |||
// p_us = signal period in micro_seconds | |||
// dc = signal duty-cycle (0.0 to 1.0) | |||
void pwm_io(int p_us, float dc) { | |||
timer.detach(); | |||
if ((p_us == 0) || (dc == 0)) { | |||
my_pwm = 0; | |||
return; | |||
} | |||
if (dc >= 1) { | |||
my_pwm = 1; | |||
return; | |||
} | |||
on_delay = (int)(p_us * dc); | |||
off_delay = p_us - on_delay; | |||
toggleOn(); | |||
} | } | ||
int main() { | |||
pwm_io(20000, 0.25); // 20ms - 25% | |||
while(1) { | |||
my_led = !my_led; | |||
wait(0.5); | |||
} | |||
} | } | ||
</source> | |||
=== [] === | |||
<source lang="cpp"> | |||
</source> | |||
=== 7 segment === | |||
This is code from https://goo.gl/3BHgTp | |||
<source lang="cpp"> | |||
.... | |||
void write_digit(__IO uint8_t digit){ | void write_digit(__IO uint8_t digit){ | ||
Řádek 372: | Řádek 295: | ||
GPIO_WriteBit(GPIOA, GPIO_Pin_6, (BitAction)(0)); // digit 4 | GPIO_WriteBit(GPIOA, GPIO_Pin_6, (BitAction)(0)); // digit 4 | ||
} | } | ||
} | } | ||
Řádek 494: | Řádek 404: | ||
} | } | ||
.... | |||
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ | ||
</source> | </source> |
Aktuální verze z 5. 6. 2021, 06:42
soutěž:
Cortex | |
Nucleo KIT | |
Nucleo pinout
Arduino-compatible headers Morpho headers These headers give access to all STM32 pins.
|
Source code
IDE:
Compiler:
Example:
#include "mbed.h"
DigitalOut myled(LED1);
int main() {
while(1) {
myled = 1; // LED is ON
wait(0.2); // 200 ms
myled = 0; // LED is OFF
wait(1.0); // 1 sec
}
}
Blink color LED RGB
#include "mbed.h"
DigitalOut red(D5);
DigitalOut blue(D8);
DigitalOut green(D9);
int i;
int main() {
while(1) {
for (i=1; i<7; i++) {
red = i & 1;
blue = i & 2;
green = i & 4;
wait(0.2);
}
}
}
Read Button
#include "mbed.h"
DigitalIn mybutton(USER_BUTTON);
DigitalOut myled(LED1);
int main() {
while(1) {
if (mybutton == 0) { // Button is pressed
myled = !myled; // Toggle the LED state
wait(0.2); // 200 ms
}
}
}
PWM
#include "mbed.h"
PwmOut mypwm(PWM_OUT);
DigitalOut myled(LED1);
int main() {
mypwm.period_ms(10);
mypwm.pulsewidth_ms(1);
printf("pwm set to %.2f %%\n", mypwm.read() * 100);
while(1) {
myled = !myled;
wait(1);
}
}
Nucleo read button interrupt
#include "mbed.h"
InterruptIn mybutton(USER_BUTTON);
DigitalOut myled(LED1);
float delay = 1.0; // 1 sec
void pressed()
{
if (delay == 1.0)
delay = 0.2; // 200 ms
else
delay = 1.0; // 1 sec
}
int main()
{
mybutton.fall(&pressed);
while (1) {
myled = !myled;
wait(delay);
}
}
Nucleo_pwm2
#include "mbed.h"
DigitalOut my_led(LED1);
InterruptIn my_button(USER_BUTTON);
PwmOut my_pwm(PB_3);
void pressed() {
if (my_pwm.read() == 0.25) {
my_pwm.write(0.75);
}
else {
my_pwm.write(0.25);
}
}
int main()
{
// Set PWM
my_pwm.period_ms(10);
my_pwm.write(0.5);
// Set button
my_button.fall(&pressed);
while (1) {
my_led = !my_led;
wait(0.5); // 500 ms
}
}
Nucleo_read_analog_value
#include "mbed.h"
AnalogIn analog_value(A0);
DigitalOut led(LED1);
int main() {
float meas;
printf("\nAnalogIn example\n");
while(1) {
meas = analog_value.read(); // Converts and read the analog input value (value from 0.0 to 1.0)
meas = meas * 3300; // Change the value to be in the 0 to 3300 range
printf("measure = %.0f mV\n", meas);
if (meas > 2000) { // If the value is greater than 2V then switch the LED on
led = 1;
}
else {
led = 0;
}
wait(0.2); // 200 ms
}
}
Nucleo_pwm3
#include "mbed.h"
Timeout timer;
DigitalOut my_led(LED1);
DigitalOut my_pwm(D10); // IO used by pwm_io function
int on_delay = 0;
int off_delay = 0;
void toggleOff(void);
void toggleOn(void) {
my_pwm = 1;
timer.attach_us(toggleOff, on_delay);
}
void toggleOff(void) {
my_pwm = 0;
timer.attach_us(toggleOn, off_delay);
}
// p_us = signal period in micro_seconds
// dc = signal duty-cycle (0.0 to 1.0)
void pwm_io(int p_us, float dc) {
timer.detach();
if ((p_us == 0) || (dc == 0)) {
my_pwm = 0;
return;
}
if (dc >= 1) {
my_pwm = 1;
return;
}
on_delay = (int)(p_us * dc);
off_delay = p_us - on_delay;
toggleOn();
}
int main() {
pwm_io(20000, 0.25); // 20ms - 25%
while(1) {
my_led = !my_led;
wait(0.5);
}
}
[]
7 segment
This is code from https://goo.gl/3BHgTp
....
void write_digit(__IO uint8_t digit){
if (digit == 1){
// digit 1 xuat 1; digit 2, 3, 4 xuat 0
GPIO_WriteBit(GPIOB, GPIO_Pin_1, (BitAction)(1)); // digit 1
GPIO_WriteBit(GPIOB, GPIO_Pin_0, (BitAction)(0)); // digit 2
GPIO_WriteBit(GPIOA, GPIO_Pin_7, (BitAction)(0)); // digit 3
GPIO_WriteBit(GPIOA, GPIO_Pin_6, (BitAction)(0)); // digit 4
}
if (digit == 2){
// digit 2 xuat 1; digit 1, 3, 4 xuat 0
GPIO_WriteBit(GPIOB, GPIO_Pin_1, (BitAction)(0)); // digit 1
GPIO_WriteBit(GPIOB, GPIO_Pin_0, (BitAction)(1)); // digit 2
GPIO_WriteBit(GPIOA, GPIO_Pin_7, (BitAction)(0)); // digit 3
GPIO_WriteBit(GPIOA, GPIO_Pin_6, (BitAction)(0)); // digit 4
}
}
void write_led_7_segment(__IO uint8_t number){
// Muc logic 0 -> led sang, muc logic 1 -> led toi
if (number == 0){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(0)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(0)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(0)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(1)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 1){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(1)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(1)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(1)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(1)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(1)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 2){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(1)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(0)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(0)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(1)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(0)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 3){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(0)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(1)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(1)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(0)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 4){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(1)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(1)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(1)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(0)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(0)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 5){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(1)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(0)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(1)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(0)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(0)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 6){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(1)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(0)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(0)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(0)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(0)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 7){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(1)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(1)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(1)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(1)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 8){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(0)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(0)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(0)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(0)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
if (number == 9){
GPIO_WriteBit(GPIOA, GPIO_Pin_12, (BitAction)(0)); // led A
GPIO_WriteBit(GPIOB, GPIO_Pin_4, (BitAction)(0)); // led B
GPIO_WriteBit(GPIOA, GPIO_Pin_15, (BitAction)(0)); // led C
GPIO_WriteBit(GPIOB, GPIO_Pin_6, (BitAction)(0)); // led D
GPIO_WriteBit(GPIOB, GPIO_Pin_7, (BitAction)(1)); // led E
GPIO_WriteBit(GPIOA, GPIO_Pin_11, (BitAction)(0)); // led F
GPIO_WriteBit(GPIOB, GPIO_Pin_3, (BitAction)(0)); // led G
GPIO_WriteBit(GPIOB, GPIO_Pin_5, (BitAction)(1)); // led DP
}
}
....
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/