Quantum Leaps 89834cf23b 5.9.0
2017-05-17 13:15:09 -04:00

55 lines
2.5 KiB
C

/*********************************************************************
* SEGGER Microcontroller GmbH & Co. KG *
* The Embedded Experts *
**********************************************************************
* *
* (c) 1995 - 2017 SEGGER Microcontroller GmbH & Co. KG *
* *
* Internet: segger.com Support: support_embos@segger.com *
* *
**********************************************************************
* *
* embOS * Real time operating system for microcontrollers *
* *
* Please note: *
* *
* Knowledge of this file may under no circumstances *
* be used to write a similar product or a real-time *
* operating system for in-house use. *
* *
* Thank you for your fairness ! *
* *
**********************************************************************
* *
* OS version: 4.34.1 *
* *
**********************************************************************
----------------------------------------------------------------------
File : JLINKMEM.h
Purpose : Header file for J-Link ARM communication using memory
---------------------------END-OF-HEADER------------------------------
*/
#ifndef JLINKMEM_H
#define JLINKMEM_H // Avoid multiple inclusion
#ifdef __cplusplus
extern "C" {
#endif
void JLINKMEM_Process(void);
void JLINKMEM_SetpfOnRx(void (* pf)(unsigned char Data));
void JLINKMEM_SetpfOnTx(void (* pf)(void));
void JLINKMEM_SetpfGetNextChar(OS_INT (* pf)(void));
void JLINKMEM_SendChar(unsigned char Data);
#ifdef __cplusplus
}
#endif
#endif // Avoid multiple inclusion
/*************************** end of file ****************************/