Sha256: 226c5dd42bd8061d320ce5fe384698d33de17634afcbdce1de4063a2a42c35db

Contents?: true

Size: 576 Bytes

Versions: 2

Compression:

Stored size: 576 Bytes

Contents

/* =========================================================================
    CMock - Automatic Mock Generation for C
    ThrowTheSwitch.org
    Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
    SPDX-License-Identifier: MIT
========================================================================= */

#include "IntrinsicsWrapper.h"
#ifdef __ICCARM__
#include <intrinsics.h>
#endif

void Interrupt_Enable(void)
{
#ifdef __ICCARM__
  __enable_interrupt();
#endif
}

void Interrupt_Disable(void)
{
#ifdef __ICCARM__
  __disable_interrupt();
#endif
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-1.0.1 vendor/cmock/examples/temp_sensor/src/IntrinsicsWrapper.c
ceedling-1.0.0 vendor/cmock/examples/temp_sensor/src/IntrinsicsWrapper.c