Skip to content

Commit 56a2e83

Browse files
committed
Merge branch 'master' of github.com:supperthomas/rt-thread
2 parents a90610d + e847fab commit 56a2e83

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ env:
112112
- RTT_BSP='stm32/stm32l475-st-discovery' RTT_TOOL_CHAIN='sourcery-arm'
113113
- RTT_BSP='stm32/stm32l476-st-nucleo' RTT_TOOL_CHAIN='sourcery-arm'
114114
- RTT_BSP='stm32/stm32l496-ali-developer' RTT_TOOL_CHAIN='sourcery-arm'
115+
- RTT_BSP='stm32/stm32l496-st-nucleo' RTT_TOOL_CHAIN='sourcery-arm'
115116
- RTT_BSP='stm32f20x' RTT_TOOL_CHAIN='sourcery-arm'
116117
- RTT_BSP='swm320-lq100' RTT_TOOL_CHAIN='sourcery-arm'
117118
# - RTT_BSP='taihu' RTT_TOOL_CHAIN='sourcery-ppc'

bsp/stm32/stm32l496-st-nucleo/applications/main.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
*
66
* Change Logs:
77
* Date Author Notes
8-
* 2020-03-14 super_mcu first version
8+
* 2020-03-14 super_mcu first version
99
*/
1010

1111
#include <rtthread.h>
1212
#include <rtdevice.h>
1313
#include <board.h>
1414

15-
/* defined the LED0 pin: PE7 */
15+
/* defined the LED2 pin: PB7 */
1616
#define LED2_PIN GET_PIN(B, 7)
1717

1818
int main(void)
1919
{
2020
int count = 1;
21-
/* set LED0 pin mode to output */
21+
/* set LED2 pin mode to output */
2222
rt_pin_mode(LED2_PIN, PIN_MODE_OUTPUT);
2323

2424
while (count++)

0 commit comments

Comments
 (0)