##// END OF EJS Templates
R3 updates. TC handlers added for the new telecommands:...
R3 updates. TC handlers added for the new telecommands: TC_LFR_LOAD_KCOEFFICIENTS TC_LFR_DUMP_KCOEFFICIENTD TC_LFR_LOAD_FBINS_MASK

File last commit:

r166:b9d810e81e1d patch rev 2
r192:a0b224a4fc7c VHDL_0_1_28
Show More
lfr_cpu_usage_report.h
32 lines | 653 B | text/x-c | CLexer
/ header / lfr_cpu_usage_report.h
#ifndef LFR_CPU_USAGE_REPORT_H
#define LFR_CPU_USAGE_REPORT_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <assert.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <inttypes.h>
#include <rtems/cpuuse.h>
#include <rtems/bspIo.h>
#ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
#include <rtems/score/timestamp.h>
#endif
#ifndef __RTEMS_USE_TICKS_FOR_STATISTICS__
extern Timestamp_Control CPU_usage_Uptime_at_last_reset;
#else
extern uint32_t CPU_usage_Ticks_at_last_reset;
#endif
unsigned char lfr_rtems_cpu_usage_report( void );
#endif // LFR_CPU_USAGE_REPORT_H