Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Timer_A to make LED blink

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces you how to use Timer_A to make LED flash, the content is very detailed, interested friends can refer to, I hope to help you.

Use Timer_A. The code is as follows:

#include "./ DriverLib/driverlib.h"int main(){ WDT_A_hold( WDT_A_BASE ); //Close watchdog GPIO_setAsOutputPin( GPIO_PORT_P1, GPIO_PIN0 ); //Configure P1.0 for output mode GPIO_setOutputLowOnPin( GPIO_PORT_P1 , GPIO_PIN0 ); //Set P1.0 output low Timer_A_initUpModeParam uptimer; // Timer_A initializes variables uptimer.clockSource = TIMER_A_CLOCKSOURCE_SMCLK; //Configure clock source to SMCLK uptimer.clockSourceDivider = TIMER_A_CLOCKSOURCE_DIVIDER_1; //configure divide-by-1 uptimer.timerPeriod = 50000; //configure CCR0 uptimer.timerInterruptEnable_TAIE = TIMER_A_TAIE_INTERRUPT_DISABLE; //close Timer_A interrupt uptimer.captureCompareInterruptEnable_CCR0_CCIE = TIMER_A_CCIE_CCR0_INTERRUPT_ENABLE; //enable CCR0 capture compare interrupt uptimer.timerClear = TIMER_A_DO_CLEAR; //enable clear uptimer.startTimer = true; //Timer_A needs to start immediately Timer_A_initUpMode( TIMER_A0_BASE , &uptimer ); //Initialize Timer_A __bis_SR_register( LPM0_bits + GIE ); //Enter LPM0, enable interrupt return 0;}#pragma vector = TIMER0_A0_VECTOR__interrupt void TIMER0_A0_ISR(void){ GPIO_toggleOutputOnPin( GPIO_PORT_P1, GPIO_PIN0 ); //Reverse P1.0 status} About how to use Timer_A to make LED blink to share here, I hope the above content can be of some help to everyone, you can learn more knowledge. If you think the article is good, you can share it so that more people can see it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report