aboutsummaryrefslogtreecommitdiff
path: root/contrib/firmware/angie/c/include/i2c.h
blob: 06185efb4dd3fe1afcbe21007f52fb1243f7d291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* SPDX-License-Identifier: GPL-2.0-or-later */
/****************************************************************************
	File : i2c.h                                                            *
	Contents : i2c bit-bang library                                         *
	Copyright 2023, Ahmed Errached BOUDJELIDA, NanoXplore SAS.              *
	<aboudjelida@nanoxplore.com>                                            *
	<ahmederrachedbjld@gmail.com>											*
*****************************************************************************/

#ifndef __I2C_H
#define __I2C_H

#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>

void start_cd(void);
void repeated_start(void);
void stop_cd(void);
void clock_cd(void);
void send_ack(void);
bool get_ack(void);

uint8_t get_address(uint8_t adr, uint8_t rdwr);

void send_byte(uint8_t input);
uint8_t receive_byte(void);
#endif