MSP432库函数学习笔记-SysTick

MSP432Pxx的计数器是24 位的自减计数器,也就是每检测到一个时钟信号,计数器的

值就减1,减到0之后就会产生一个中断信号,然后重置计数器的值。

目录

1,SysTick计数器使能相关

2,SysTick计数器中断相关

3,SysTick计数器值相关


1,SysTick计数器使能相关

void SysTick_enableModule(void);
//启动SysTick计数器
//! This function stops the SysTick counter.  If an interrupt handler has been
//! registered, it is not called until SysTick is restarted.

void SysTick_disableModule(void);
//关闭SysTick计数器

此函数会导致(重新)启动SysTick计数器,但此函数并不会重置计数器的值,会从当前值开始计算,不会重载为上一次调用SysTick_setPeriod()设置的值,如果需要重新加载,则必须重新注册NVIC_ST_CURRENT寄存器,对该寄存器的任何写入都会导致计数器值被重置为0,并在下次重载时使用提供的值。

2,SysTick计数器中断相关

void SysTick_registerInterrupt(void (*intHandler)(void));
//为SysTick注册中断处理函数

void SysTick_unregisterInterrupt(void);
//为SysTick注销中断处理函数

void SysTick_enableInterrupt(void);
//开启SysTick中断

void SysTick_disableInterrupt(void);
//关闭SysTick中断

启用SysTick中断,进入中断时不用清除SysTick的值,因为进入中断后会自动清除计数器的值

3,SysTick计数器值相关

void SysTick_setPeriod(uint32_t period);
//设置SysTick计数器初值

uint32_t SysTick_getPeriod(void);
//获取SysTick计数器设置的初值

uint32_t SysTick_getValue(void);
//获取SysTick计数器当前值

  • 3
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
MSP432 低功耗高性能并存10.1 Digital I/O Introduction The digital I/O features include: • Independently programmable individual I/Os • Any combination of input or output • Individually configurable interrupts for ports (available for certain ports only) • Independent input and output data registers • Individually configurable pullup or pulldown resistors • Wake-up capability from ultra-low power modes (available for certain ports only) • Individually configurable high drive I/Os (available for certain I/Os only) Devices within the family may have up to eleven digital I/O ports implemented (P1 to P10 and PJ). Most ports contain eight I/O lines; however, some ports may contain less (see the device-specific data sheet for ports available). Each I/O line is individually configurable for input or output direction, and each can be individually read or written. Each I/O line is individually configurable for pullup or pulldown resistors. Certain ports have interrupt and wake-up capability from ultra-low power modes (see device specific data sheet for ports with interrupt and wake-up capability). Each interrupt can be individually enabled and configured to provide an interrupt on a rising or falling edge of an input signal. All interrupts are fed into an encoded Interrupt Vector register, allowing the application to determine which sub-pin of a port has generated the event. Individual ports can be accessed as byte-wide ports or can be combined into half-word-wide ports. Port pairs P1 and P2, P3 and P4, P5 and P6, P7 and P8, and so on, are associated with the names PA, PB, PC, PD, and so on, respectively. All port registers are handled in this manner with this naming convention. The main exception are the interrupt vector registers, for example, interrupts for ports P1 and P2 must be handled through P1IV and P2IV, PAIV does not exist. When writing to port PA with half-word operations, all 16 bits are written to the port. When writing to the lower byte of port PA using byte operations,

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值