blob: 4d13e2adbbb3df8c6958ac655129c437b8487e13 [file] [log] [blame]
Christina Quast637ace92014-11-28 13:28:37 +01001/* ----------------------------------------------------------------------------
2 * ATMEL Microcontroller Software Support
3 * ----------------------------------------------------------------------------
4 * Copyright (c) 2009, Atmel Corporation
5 *
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * - Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the disclaimer below.
13 *
14 * Atmel's name may not be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
20 * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 * ----------------------------------------------------------------------------
28 */
29
30/**
31 * \file
32 *
33 * Interface for Synchronous Serial (SSC) controller.
34 *
35 */
36
37#ifndef _SSC_
38#define _SSC_
39
40/*----------------------------------------------------------------------------
41 * Headers
42 *----------------------------------------------------------------------------*/
43#include "chip.h"
44
45#include <stdint.h>
46
47#ifdef __cplusplus
48 extern "C" {
49#endif
50
51/*----------------------------------------------------------------------------
52 * Exported functions
53 *----------------------------------------------------------------------------*/
54extern void SSC_Configure(uint32_t bitRate, uint32_t masterClock);
55extern void SSC_ConfigureTransmitter(uint32_t tcmr, uint32_t tfmr);
56extern void SSC_ConfigureReceiver(uint32_t rcmr, uint32_t rfmr);
57extern void SSC_EnableTransmitter(void);
58extern void SSC_DisableTransmitter(void);
59extern void SSC_EnableReceiver(void);
60extern void SSC_DisableReceiver(void);
61extern void SSC_EnableInterrupts(uint32_t sources);
62extern void SSC_DisableInterrupts(uint32_t sources);
63extern void SSC_Write(uint32_t frame);
64extern uint32_t SSC_Read(void);
65extern uint8_t SSC_WriteBuffer(void *buffer, uint32_t length);
66extern uint8_t SSC_ReadBuffer(void *buffer, uint32_t length);
67
68#ifdef __cplusplus
69}
70#endif
71
72#endif /* #ifndef _SSC_ */
73