summaryrefslogtreecommitdiff
path: root/chip/stm32/jtag-stm32l15x.c
blob: 71e5f711e2f84fd95336e5e6ce21df2b228d342b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
/* Settings to enable JTAG debugging */

#include "jtag.h"
#include "registers.h"

void jtag_pre_init(void)
{
	/* stop TIM2-4 and watchdogs when the JTAG stops the CPU */
	STM32_DBGMCU_APB1FZ |= 0x00001807;
}