19 lines
239 B
C
19 lines
239 B
C
/*
|
|
* stack.h
|
|
*
|
|
* Created on: Sep 27, 2015
|
|
* Author: tkl
|
|
*/
|
|
|
|
#ifndef STACK_H_
|
|
#define STACK_H_
|
|
|
|
#ifdef ARCH_MSP430
|
|
#include "msp430_stack.h"
|
|
#endif
|
|
#ifdef ARCH_STM32F4XX
|
|
#include "stm32f4xx_stack.h"
|
|
#endif
|
|
|
|
#endif /* STACK_H_ */
|