Difference between revisions of "MCBSTM32C/Project start"

From Teknologisk videncenter
Jump to: navigation, search
m (Created page with "Project start goals: #Simple startup from assembler to main() #Switch from HSI to HSE clock (25 Mhz Crystal) #Initializing GPIO port E[15:8] for output - driving the leds #Initia...")
 
m
 
Line 1: Line 1:
 
Project start goals:
 
Project start goals:
#Simple startup from assembler to main()
+
#[[/assembler|Simple startup from assembler to main()]]
#Switch from HSI to HSE clock (25 Mhz Crystal)
+
#[[/HSI to HSE|Switch from HSI to HSE clock]] (25 Mhz Crystal)
#Initializing GPIO port E[15:8] for output - driving the leds
+
#[[/Init GPIO|Initializing GPIO port E[15:8] for output - driving the leds]]
#Initializing RS232 at 9600 baud
+
#[[/RS232 init|Initializing RS232 at 9600 baud]]
#Initializing Interrupt controller  
+
#[[/IRQ controller|Initializing Interrupt controller]]
#TIMER interrupt blinks the leds
+
#[[/Timer |TIMER interrupt blinks the leds]]
#Fetching input from UART
+
#[[/RS232 com|Communicating with the UART]]
  
 
[[CAtegory:ARM]]
 
[[CAtegory:ARM]]

Latest revision as of 07:10, 2 September 2011

Project start goals:

  1. Simple startup from assembler to main()
  2. Switch from HSI to HSE clock (25 Mhz Crystal)
  3. Initializing GPIO port E[15:8] for output - driving the leds
  4. Initializing RS232 at 9600 baud
  5. Initializing Interrupt controller
  6. TIMER interrupt blinks the leds
  7. Communicating with the UART