Sha256: c9ad5ef17784314d0173bf7e9717084bd2a4155848b0f8cf98d06356fb59497b

Contents?: true

Size: 668 Bytes

Versions: 2

Compression:

Stored size: 668 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
========================================================================= */

#ifndef _TIMERINTERRUPTCONFIGURATOR_H
#define _TIMERINTERRUPTCONFIGURATOR_H

#include "Types.h"

#define TIMER0_ID_MASK (((uint32)0x1) << AT91C_ID_TC0)

void Timer_DisableInterrupt(void);
void Timer_ResetSystemTime(void);
void Timer_ConfigureInterrupt(void);
void Timer_EnableInterrupt(void);

#endif // _TIMERINTERRUPTCONFIGURATOR_H

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-1.0.1 examples/temp_sensor/src/TimerInterruptConfigurator.h
ceedling-1.0.0 examples/temp_sensor/src/TimerInterruptConfigurator.h