You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
335 B

  1. #ifndef __DEF_ROSACE_IO_H
  2. #define __DEF_ROSACE_IO_H
  3. #include "types.h"
  4. typedef struct {
  5. struct aircraft_dynamics_outs_t sig_outputs;
  6. uint64_t t_simu;
  7. REAL_TYPE sig_delta_th_c;
  8. REAL_TYPE sig_delta_e_c;
  9. } output_t;
  10. void ROSACE_write_outputs(output_t* v);
  11. void ROSACE_update_altitude_command(REAL_TYPE h_cons);
  12. #endif