Subversion Repositories f9daq

Rev

Blame | Last modification | View Log | RSS feed

  1. #include <limits.h>
  2. #include <math.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <unistd.h>
  6. #include <sys/types.h>
  7. #include <sys/sysinfo.h>
  8.  
  9. #include "main.h"
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16. const char *rp_app_desc(void)
  17. {
  18.     return (const char *)"Template application.\n";
  19. }
  20.  
  21.  
  22. int rp_app_init(void)
  23. {
  24.     fprintf(stderr, "Loading template application\n");
  25.     return 0;
  26. }
  27.  
  28.  
  29. int rp_app_exit(void)
  30. {
  31.     fprintf(stderr, "Unloading template application\n");
  32.     return 0;
  33. }
  34.  
  35.  
  36. int rp_set_params(rp_app_params_t *p, int len)
  37. {
  38.     return 0;
  39. }
  40.  
  41.  
  42. int rp_get_params(rp_app_params_t **p)
  43. {
  44.     return 0;
  45. }
  46.  
  47.  
  48. int rp_get_signals(float ***s, int *sig_num, int *sig_len)
  49. {
  50.     return 0;
  51. }
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. void UpdateSignals(void){}
  61.  
  62.  
  63. void UpdateParams(void){}
  64.  
  65.  
  66. void OnNewParams(void) {}
  67.  
  68.  
  69. void OnNewSignals(void){}
  70.  
  71.  
  72. void PostUpdateSignals(void){}