mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-05 21:15:20 +00:00
15 lines
505 B
C
15 lines
505 B
C
/* =========================================================================
|
|
CMock - Automatic Mock Generation for C
|
|
ThrowTheSwitch.org
|
|
Copyright (c) 2007-25 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
SPDX-License-Identifier: MIT
|
|
========================================================================= */
|
|
|
|
#ifndef _MODELCONFIG_H
|
|
#define _MODELCONFIG_H
|
|
|
|
#define MASTER_CLOCK 48054857 // Master Clock
|
|
#define USART0_BAUDRATE 115200 // USART Baudrate
|
|
|
|
#endif // _MODELCONFIG_H
|