31 lines
605 B
C
31 lines
605 B
C
/*
|
|
* codrv_cpu_stm32h7xx
|
|
*
|
|
* Copyright (c) 2012-2019 emotas embedded communication GmbH
|
|
*-------------------------------------------------------------------
|
|
* SVN $Id: cpu_stm32.h 38116 2021-10-04 10:22:35Z hil $
|
|
*
|
|
*
|
|
*-------------------------------------------------------------------
|
|
*
|
|
*
|
|
*/
|
|
|
|
/********************************************************************/
|
|
/**
|
|
* \file
|
|
* \brief CPU for STM32H7XX from ST
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef CPU_STM32H7XX_H
|
|
#define CPU_STM32H7XX_H 1
|
|
|
|
/* init CAN related hardware part */
|
|
void codrvHardwareCanInit(void);
|
|
|
|
void NVIC_Configuration(void);
|
|
|
|
#endif /* CPU_STM32H7XX_H */
|