123 lines
3.2 KiB
C
123 lines
3.2 KiB
C
/*!
|
|
\file gd32f4xx_dbg.c
|
|
\brief DBG driver
|
|
*/
|
|
|
|
/*
|
|
Copyright (C) 2016 GigaDevice
|
|
|
|
2016-08-15, V1.0.0, firmware for GD32F4xx
|
|
*/
|
|
|
|
#include "gd32f4xx_dbg.h"
|
|
|
|
/*!
|
|
\brief read DBG_ID code register
|
|
\param[in] none
|
|
\param[out] none
|
|
\retval DBG_ID code
|
|
*/
|
|
uint32_t dbg_id_get(void)
|
|
{
|
|
return DBG_ID;
|
|
}
|
|
|
|
/*!
|
|
\brief enable low power behavior when the mcu is in debug mode
|
|
\param[in] dbg_low_power:
|
|
this parameter can be any combination of the following values:
|
|
\arg DBG_LOW_POWER_SLEEP: keep debugger connection during sleep mode
|
|
\arg DBG_LOW_POWER_DEEPSLEEP: keep debugger connection during deepsleep mode
|
|
\arg DBG_LOW_POWER_STANDBY: keep debugger connection during standby mode
|
|
\param[out] none
|
|
\retval none
|
|
*/
|
|
void dbg_low_power_enable(uint32_t dbg_low_power)
|
|
{
|
|
DBG_CTL0 |= dbg_low_power;
|
|
}
|
|
|
|
/*!
|
|
\brief disable low power behavior when the mcu is in debug mode
|
|
\param[in] dbg_low_power:
|
|
this parameter can be any combination of the following values:
|
|
\arg DBG_LOW_POWER_SLEEP: donot keep debugger connection during sleep mode
|
|
\arg DBG_LOW_POWER_DEEPSLEEP: donot keep debugger connection during deepsleep mode
|
|
\arg DBG_LOW_POWER_STANDBY: donot keep debugger connection during standby mode
|
|
\param[out] none
|
|
\retval none
|
|
*/
|
|
void dbg_low_power_disable(uint32_t dbg_low_power)
|
|
{
|
|
DBG_CTL0 &= ~dbg_low_power;
|
|
}
|
|
|
|
/*!
|
|
\brief enable peripheral behavior when the mcu is in debug mode
|
|
\param[in] dbg_periph: dbg_periph_enum
|
|
\param[out] none
|
|
\retval none
|
|
*/
|
|
void dbg_periph_enable(dbg_periph_enum dbg_periph)
|
|
{
|
|
if(RESET == ((uint32_t)dbg_periph & BIT(30))){
|
|
DBG_CTL1 |= (uint32_t)dbg_periph;
|
|
}else{
|
|
DBG_CTL2 |= ((uint32_t)dbg_periph & (~BIT(30)));
|
|
}
|
|
|
|
}
|
|
|
|
/*!
|
|
\brief disable peripheral behavior when the mcu is in debug mode
|
|
\param[in] dbg_periph: dbg_periph_enum
|
|
\param[out] none
|
|
\retval none
|
|
*/
|
|
void dbg_periph_disable(dbg_periph_enum dbg_periph)
|
|
{
|
|
if(RESET == ((uint32_t)dbg_periph & BIT(30))){
|
|
DBG_CTL1 &= ~(uint32_t)dbg_periph;
|
|
}else{
|
|
DBG_CTL2 &= ~((uint32_t)dbg_periph & (~BIT(30)));
|
|
}
|
|
}
|
|
|
|
/*!
|
|
\brief enable trace pin assignment
|
|
\param[in] none
|
|
\param[out] none
|
|
\retval none
|
|
*/
|
|
void dbg_trace_pin_enable(void)
|
|
{
|
|
DBG_CTL0 |= DBG_CTL0_TRACE_IOEN;
|
|
}
|
|
|
|
/*!
|
|
\brief disable trace pin assignment
|
|
\param[in] none
|
|
\param[out] none
|
|
\retval none
|
|
*/
|
|
void dbg_trace_pin_disable(void)
|
|
{
|
|
DBG_CTL0 &= ~DBG_CTL0_TRACE_IOEN;
|
|
}
|
|
|
|
/*!
|
|
\brief trace pin mode selection
|
|
\param[in] trace_mode:
|
|
\arg TRACE_MODE_ASYNC: trace pin used for async mode
|
|
\arg TRACE_MODE_SYNC_DATASIZE_1: trace pin used for sync mode and data size is 1
|
|
\arg TRACE_MODE_SYNC_DATASIZE_2: trace pin used for sync mode and data size is 2
|
|
\arg TRACE_MODE_SYNC_DATASIZE_4: trace pin used for sync mode and data size is 4
|
|
\param[out] none
|
|
\retval none
|
|
*/
|
|
void dbg_trace_pin_mode_set(uint32_t trace_mode)
|
|
{
|
|
DBG_CTL0 &= ~DBG_CTL0_TRACE_MODE;
|
|
DBG_CTL0 |= trace_mode;
|
|
}
|