summaryrefslogtreecommitdiff
path: root/digital/zigbit/bitcloud/stack/Components/HAL/include/dbgu.h
blob: 44f76ca4506fc2a77cff4e62a9d5902dd573d0e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**************************************************************************//**
  \file  dbgu.h

  \brief Declarations of debug message interface (feature only for atmel arm).

  \author
    Atmel Corporation: http://www.atmel.com \n
    Support email: avr@atmel.com

  Copyright (c) 2008-2011, Atmel Corporation. All rights reserved.
  Licensed under Atmel's Limited License Agreement (BitCloudTM).

  \internal
  History:
    11/11/08 A. Khromykh - Created
 ******************************************************************************/
/******************************************************************************
 *   WARNING: CHANGING THIS FILE MAY AFFECT CORE FUNCTIONALITY OF THE STACK.  *
 *   EXPERT USERS SHOULD PROCEED WITH CAUTION.                                *
 ******************************************************************************/

#ifndef _DBGU_H
#define _DBGU_H

/******************************************************************************
                   Prototypes section
******************************************************************************/
/**************************************************************************//**
\brief Open dbgu port (115200 baud, 8N1 format).
******************************************************************************/
void HAL_OpenDbgu(void);

/**************************************************************************//**
\brief Send string trough dbgu port.

\param[in]
  buffer - pointer to the string
******************************************************************************/
void HAL_SendDbguMessage(const char *buffer);

#endif /* _DBGU_H */