ISF  2.1
Intelligent Sensing Framework for Kinetis with Processor Expert
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
fsl_spi_hal.c
Go to the documentation of this file.
1 /*!
2 ********************************************************************************
3 * File: fsl_spi_hal.c
4 *
5 * Copyright (c) 2014, Freescale Semiconductor, Inc.
6 *
7 *******************************************************************************/
8 /*!
9 * @file fsl_spi_hal.c
10 * @brief \b fsl_spi_hal.c implements spi HAL Layer interfaces.
11 */
12 #include "fsl_spi_hal.h"
13 
14 /***********************************************************************
15 *
16 * Function Name : spi_hal_enable
17 * Description : HAL interfaces for enabling the spi module.
18 * It enbales the clock and interrupt.
19 *
20 ***************************************************************************/
21 void spi_hal_enable(uint32 instance)
22 {
23 }
24 /***********************************************************************
25 *
26 * Function Name : spi_hal_disable
27 * Description : HAL interface for disabling the spi module.
28 * It disable the clock and interrupt.
29 *
30 ***************************************************************************/
31 void spi_hal_disable(uint32 instance)
32 {
33 
34 }
35 
36 
unsigned long uint32
This defines uint32 as unsigned long.
Definition: isf_types.h:36
fsl_spi_hal.h defines structures and types for the spi master HAL layer.
void spi_hal_enable(uint32 instance)
Definition: fsl_spi_hal.c:21
void spi_hal_disable(uint32 instance)
Definition: fsl_spi_hal.c:31