Chinaunix首页 | 论坛 | 博客
  • 博客访问: 420884
  • 博文数量: 55
  • 博客积分: 167
  • 博客等级: 入伍新兵
  • 技术积分: 1167
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-28 10:20
个人简介

一个算是正常的中国码农!

文章分类

全部博文(55)

文章存档

2014年(1)

2013年(31)

2012年(23)

我的朋友

分类: C/C++

2012-12-25 08:22:48

花了一段时间学习了ucos系统,主要是对于其内部结构和数据传输方面进行了学习有一下几点心得:
1、要认真阅读一下那本ucos操作系统系统的书,这个很必要,了解ucos系统的运行方式,数据结构,变量的宏。
2、要了解实时系统的相应,消息和优先级的作用,
3、了解事件的状态,最好有一快板子能边运行边调试,这样学期来很快,(我是公司买了一快开发板放那没人愿意学,我没事的时候拿着玩玩,到了不懂的地方就下点功夫学学)。
4、要了解ucos的事件的建立,和事件中的一些注意事项这些都很重要,不然你的程序运行运行就会进入硬件问题中断中的哦。
5、我这次学主要是得益于我的师兄(李壮)的技术支持啊,有什么问题就看他博客,但是他的这个方面写的真没有前面的好。http://blog.chinaunix.net/uid/21658993.html(李壮博客的地址有事没事上上,可能在你没有头绪的时候找到问题的解决方案哦。)
6、ucos系统的最难部分是你对程序整体的把握,这个需要事前认真的思考并且吧优先级个分出来,不认会出错的哦,一下是我做才几个代码。(部分希望对你们有用处)。
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;

/* GPIOF Periph clock enable */
RCC_AHB1PeriphClockCmd(LED1_RCC_AHBPeriph | LED2_RCC_AHBPeriph | LED3_RCC_AHBPeriph | LED4_RCC_AHBPeriph, ENABLE);
/* Configure PF6 PF7 PF8 PF9 in output pushpull mode */
GPIO_InitStructure.GPIO_Pin = LED1_Pin;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(LED1_Port, &GPIO_InitStructure);

GPIO_InitStructure.GPIO_Pin = LED2_Pin;
GPIO_Init(LED2_Port, &GPIO_InitStructure);

GPIO_InitStructure.GPIO_Pin = LED3_Pin;
GPIO_Init(LED3_Port, &GPIO_InitStructure);

GPIO_InitStructure.GPIO_Pin = LED4_Pin;
GPIO_Init(LED4_Port, &GPIO_InitStructure);
}
/****************************************************/
//ad2é¼ˉ¶¨ê±μÄ3õê¼»ˉ
/****************************************************/
void TIM2_Configuration(void)
{

 TIM_TimeBaseInitTypeDef  TIM_TimeBaseStructure;
// TIM_OCInitTypeDef  TIM_OCInitStructure;
 /* TIM4 clock enable */
 RCC_APB1PeriphClockCmd(RCC_APB1Periph_TIM2, ENABLE);
 
 /* »ù′¡éèÖÃ*/
 TIM_TimeBaseStructure.TIM_Period =50000;   //¼ÆÂúÖμ 
 TIM_TimeBaseStructure.TIM_Prescaler =7199;     //Ô¤·ÖÆμ,′ËÖμ+1Îa·ÖÆμμÄ3yêy
 TIM_TimeBaseStructure.TIM_ClockDivision = 0x0;   //
 TIM_TimeBaseStructure.TIM_CounterMode = TIM_CounterMode_Up;  //ÏòéϼÆêy
 TIM_TimeBaseInit(TIM2, &TIM_TimeBaseStructure);
 
 
 /*ê1ÄüԤװÔØ*/
 TIM_ARRPreloadConfig(TIM2, ENABLE);
 /*Ô¤ÏèÇå3yËùóDÖD¶Ïλ*/
 TIM_ClearITPendingBit(TIM2, TIM_IT_Update);
 
 TIM_ITConfig(TIM2, TIM_IT_Update, ENABLE);
 
 
 /* ÔêDíTIM2¿aê¼¼Æêy */
 TIM_Cmd(TIM2, ENABLE);

}

/*******************************************************************************
* Function Name  : NVIC_Configuration
* Description    : Configuration the nested vectored interrupt controller.
* Input          : None
* Output         : None
* Return         : None
* Attention : None
*******************************************************************************/
void NVIC_Configuration(void)
{
  NVIC_InitTypeDef NVIC_InitStructure; 
 
  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);   //Ô¤éèóÅÏ輶ÎòÔ¤éèμÄêÇ1¼′2éóÃò»Î»óÅÏ裬3λÏìó|
  NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQn; //  
  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  NVIC_Init(&NVIC_InitStructure);
}

/***********************************************************************************/


#ifdef  USE_FULL_ASSERT

/**
  * @brief  Reports the name of the source file and the source line number
  *   where the assert_param error has occurred.
  * @param  file: pointer to the source file name
  * @param  line: assert_param error line source number
  * @retval None
  */
void assert_failed(uint8_t* file, uint32_t line)
  /* User can add his own implementation to report the file name and line number,
     ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */

  /* Infinite loop */
  while (1)
  {
  }
}
#endif

static void mytask_1(void)
   CPU_INT08U os_err;
   os_err=os_err; 
   for(;;)
   {
 OSMutexPend(mutex,0,&os_err);
//  OSSemPend(mysem[1],0,&os_err);
 GPIO_SetBits(LED1_Port,LED1_Pin);
   OSTimeDly(500);
 GPIO_ResetBits(LED1_Port,LED1_Pin);
      OSTimeDly(500);
//       test_key=1;  
      OSMutexPost(mutex);
//       OSTimeDly(500);  
   }
}
static void mytask_2(void)
   CPU_INT08U os_err;
   os_err=os_err; 
   for(;;)
   {
 OSMutexPend(mutex,0,&os_err);
//  OSSemPend(mysem[2],0,&os_err);
 GPIO_SetBits(LED2_Port,LED2_Pin);
   OSTimeDly(500);
 GPIO_ResetBits(LED2_Port,LED2_Pin);
 OSMutexPost(mutex);
      OSTimeDly(500);
 
//       test_key=2;  
//       OSSemPost(mysem[1]);
//       OSTimeDly(500);  
   }
}
static void mytask_key(void)
{
CPU_INT08U os_err;
   os_err=os_err; 
mutex=OSMutexCreate(MUTEX_PRIO,&os_err);
   for(;;)
{
GPIO_SetBits(LED4_Port,LED4_Pin);
     OSTimeDly(500);
  }
}
void  mytask_1_create (void)
{
CPU_INT08U  os_err;
os_err = os_err; /* prevent warning... ·àÖ1±¨¾ˉ*/  
os_err= OSTaskCreate( (void (*)(void *)) mytask_1,
                      (void *)0,
                      (OS_STK         *)&task1_stk[128-1],
                      (INT8U           )8
      );
}
void  mytask_2_create (void)
{
CPU_INT08U  os_err;
os_err = os_err; /* prevent warning... ·àÖ1±¨¾ˉ*/  
os_err= OSTaskCreate( (void (*)(void *)) mytask_2,
                      (void *)0,
                      (OS_STK         *)&task2_stk[128-1],
                      (INT8U           )7
      );
}
void  mytask_key_create (void)
{
CPU_INT08U  os_err;
os_err = os_err; /* prevent warning... ·àÖ1±¨¾ˉ*/  
os_err= OSTaskCreate( (void (*)(void *)) mytask_key,
                      (void *)0,
                      (OS_STK         *)&task3_stk[128-1],
                      (INT8U           )6
      );
}
static  void  App_TaskStart (void *p_arg)
{   
(void)p_arg;
mysem[1]=OSSemCreate(0);//′′½¨μÄὸöDÅoÅá¿mysem_0
   mysem[2]=OSSemCreate(0);//′′½¨μÄὸöDÅoÅá¿mysem_1
/***************  Init hardware ***************/

 GPIO_Configuration();

    OS_CPU_SysTickInit();                                    /* Initialize the SysTick.                              */
GPIO_SetBits(LED1_Port,LED1_Pin);
GPIO_SetBits(LED2_Port,LED2_Pin);
GPIO_SetBits(LED3_Port,LED3_Pin);
GPIO_SetBits(LED4_Port,LED4_Pin);
OSTimeDly(500);
GPIO_ResetBits(LED1_Port,LED1_Pin);
GPIO_ResetBits(LED2_Port,LED2_Pin);
GPIO_ResetBits(LED3_Port,LED3_Pin);
GPIO_ResetBits(LED4_Port,LED4_Pin);
#if (OS_TASK_STAT_EN > 0)                                    //Ô¤±àòëêÇ·ñÆô¶ˉí3¼Æoˉêy//±¾oˉêyéèÖÃÎaÆô¶ˉ OS_TASK_STAT_EN=1u
    OSStatInit();                                            /* Determine CPU capacity.                              */
#endif

    App_TaskCreate();           //óÅÏ輶êÇ                             /* Create application tasks.                            */
    mytask_key_create();
    mytask_1_create ();
mytask_2_create ();
for(;;)
    {

      OSTimeDlyHMSM(0, 1, 0, 0); /* Delay One minute Ö¸¶¨μÄÑóê±oˉêy*/
    }
}
我用的是keil4。6编译器感觉这一款对汉字解决做的不地道。。。跟很多地方不兼容

阅读(3527) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~