root/platform/g9/sub/boot_hdr.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. CreateTask_spytask

   1 #include "lolevel.h"
   2 #include "platform.h"
   3 #include "core.h"
   4 
   5 const char * const new_sa = &_end;
   6 
   7 extern volatile int jogdial_stopped;
   8 void JogDial_task_my(void);
   9 
  10 /*----------------------------------------------------------------------
  11     CreateTask_spytask
  12 -----------------------------------------------------------------------*/
  13 void CreateTask_spytask()
  14 {
  15     _CreateTask("SpyTask", 0x19, 0x2000, core_spytask, 0);
  16 }

/* [<][>][^][v][top][bottom][index][help] */