Sha256: 4503ca7f2cf64b61599c4f0003a41f78e5dec7712f319ef1597deb7f3e212964

Contents?: true

Size: 763 Bytes

Versions: 2

Compression:

Stored size: 763 Bytes

Contents

/* =========================================================================
    Ceedling - Test-Centered Build System for C
    ThrowTheSwitch.org
    Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
    SPDX-License-Identifier: MIT
========================================================================= */

#include "Types.h"
#include "Executor.h"
#include "Model.h"
#include "UsartConductor.h"
#include "TimerConductor.h"
#include "AdcConductor.h"
#include "IntrinsicsWrapper.h"


void Executor_Init(void)
{
  Model_Init();
  UsartConductor_Init();
  AdcConductor_Init();
  TimerConductor_Init();
  Interrupt_Enable();
}

bool Executor_Run(void)
{
  UsartConductor_Run();
  TimerConductor_Run();
  AdcConductor_Run();
  return TRUE;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-1.0.1 examples/temp_sensor/src/Executor.c
ceedling-1.0.0 examples/temp_sensor/src/Executor.c