Rtz

    1. TI SimpleLink MCU无线平台及软件套件介绍包括超低功耗、协议栈稳定性、高级安全加密模块和模拟集成,同时支持广泛的差异化有线和无线协议。讲的很细  学到了很多
    2. 2017电赛板球系统 2/2079 stm32/stm8 2017-09-13
      挺好呀  大一就能参赛  还能再参加一次国赛    让我有种生不逢时感觉
    3. TM4C123GH6PM 硬件IIC读取 MPU6050(DMP库哦) 47/19059 微控制器 MCU 2017-07-12
      #include "inc/hw_memmap.h"没有这个文件呀。。
    4. 基于TIVA库函数的TM4C1294XL使用笔记|TI单片机 27/8607 微控制器 MCU 2017-06-03
      谢谢分享
    5. #include #include #include "inc/tm4c123gh6pm.h" #include "inc/hw_memmap.h" #include "inc/hw_types.h" #include "driverlib/sysctl.h" #include "driverlib/interrupt.h" #include "driverlib/gpio.h" #include "driverlib/timer.h" int main(void) {         uint32_t ui32Period;         SysCtlClockSet(SYSCTL_SYSDIV_5|SYSCTL_USE_PLL|SYSCTL_XTAL_16MHZ|SYSCTL_OSC_MAIN);         SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOF);         GPIOPinTypeGPIOOutput(GPIO_PORTF_BASE, GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3);         SysCtlPeripheralEnable(SYSCTL_PERIPH_TIMER0);         TimerConfigure(TIMER0_BASE, TIMER_CFG_PERIODIC);         ui32Period = (SysCtlClockGet() / 10) / 2;         TimerLoadSet(TIMER0_BASE, TIMER_A, ui32Period -1);         IntEnable(INT_TIMER0A);         TimerIntEnable(TIMER0_BASE, TIMER_TIMA_TIMEOUT);         IntMasterEnable();         TimerEnable(TIMER0_BASE, TIMER_A);         while(1)         {         } } void Timer0IntHandler(void) {         // Clear the timer interrupt         TimerIntClear(TIMER0_BASE, TIMER_TIMA_TIMEOUT);         // Read the current state of the GPIO pin and         // write back the opposite state         if(GPIOPinRead(GPIO_PORTF_BASE, GPIO_PIN_2))         {                 GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3, 0);         }         else         {                 GPIOPinWrite(GPIO_PORTF_BASE, GPIO_PIN_2, 4);         } }

最近访客

< 1/1 >

统计信息

已有3人来访过

  • 芯积分:1
  • 好友:--
  • 主题:--
  • 回复:6

留言

你需要登录后才可以留言 登录 | 注册


现在还没有留言