#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "System.h"
#include "CommsSystem.h"
Go to the source code of this file.
◆ ExternalType
◆ initExternalSystem()
Initializes the External System with initial settings.
- Parameters
-
external | A pointer to the ExternalSystem structure. |
name | The name of the external system. |
hz | Rate at which the external system is called (in hz). |
type | The type of external system (per ExternalType). |
Definition at line 3 of file ExternalSystem.c.
4 {
7 external->
comms = NULL;
9}
void initSystem(System *system, const char *name, int hz, SystemType type)
Initializes a System object.
int(* check_heartbeat)(void *self)