You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.6 KiB
81 lines
1.6 KiB
9 years ago
|
;***************************************************************************************************
|
||
|
;*
|
||
|
;* F303RE Nucleo "blinky" example
|
||
|
;*
|
||
|
;* (c) Ondrej Hruska, 2016
|
||
|
;*
|
||
|
;***************************************************************************************************
|
||
|
|
||
|
|
||
|
AREA MAIN, CODE, READONLY
|
||
|
|
||
|
; this is required by the startup script (?)
|
||
|
__use_two_region_memory
|
||
|
EXPORT __use_two_region_memory
|
||
|
|
||
|
|
||
|
|
||
|
;;;--- Include library files -----------------------
|
||
|
;;
|
||
|
GET sfr_f303xE.asm
|
||
|
|
||
|
GET Cfg_RCC.asm
|
||
|
GET Cfg_GPIO.asm
|
||
|
GET ../Delay.asm
|
||
|
;;
|
||
|
;;;-------------------------------------------------
|
||
|
|
||
|
|
||
|
;;;-------------------------------------------------
|
||
|
;; System config.
|
||
|
;;
|
||
|
;; Called by startup script before __main
|
||
|
;;
|
||
|
SystemInit PROC
|
||
|
EXPORT SystemInit ; Export to startup script
|
||
|
PUSH {LR}
|
||
|
|
||
|
BL Cfg_RCC
|
||
|
BL Cfg_GPIO
|
||
|
|
||
|
POP {PC}
|
||
|
ENDP
|
||
|
;;
|
||
|
;;;-------------------------------------------------
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
;;;-------------------------------------------------
|
||
|
;; Main function
|
||
|
;;
|
||
|
;; Called by startup script after SystemInit.
|
||
|
;; __main is called only once, and does not return!
|
||
|
;;
|
||
|
ALIGN
|
||
|
__main PROC
|
||
|
EXPORT __main ; Export to startup script
|
||
|
|
||
|
MAIN_LOOP ; Main loop
|
||
|
|
||
|
LDR R0, =100
|
||
|
BL Delay
|
||
|
|
||
|
; Toggle LED at PA5
|
||
|
LDR R2, =GPIOA_ODR
|
||
|
LDR R1, [R2]
|
||
|
EOR R1, #GPIO_ODR_ODR5
|
||
|
STR R1, [R2]
|
||
|
|
||
|
B MAIN_LOOP ; Jump to start of the main loop
|
||
|
|
||
|
ENDP
|
||
|
;;
|
||
|
;;;-------------------------------------------------
|
||
|
|
||
|
|
||
|
|
||
|
;; end of file, aligned to 4 bytes
|
||
|
ALIGN
|
||
|
END
|