Skip to content

flyaqiao/KiteOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KiteOS

lite os, micro os for arm CM0~CM3

examples

#include <LPC17xx.H>   
#include "stdio.h"        
#include "NVIC.h"
#include "string.h"
#include "KiteLib.h" 
#include "Uart.h"
#include "Config.h"
DWORD  AppStatusStack[256];

#define LED_LAMP  (1 << 0)

void AppStatus(void)
{
  LPC_GPIO2->FIODIR	|= (LED_LAMP);
  while (1)
  {   
    OsWaitDelay(OS_TICKS_PER_SEC);
    LPC_GPIO2->FIOPIN ^= LED_LAMP;
 }
}
void AppEntry(void)  
{   
//  GpioConfig();  
  UartInit();   
//  printf("System running.\r\n");
  OsCreateTask(AppStatus, AppStatusStack + 256, 4);  
       
  while (1)
  {            
    OsWaitDelay(OS_TICKS_PER_SEC);
  }
}

About

lite os, micro os for arm CM0~CM3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published