eeprom8 2.0.0.0
eeprom8.h
Go to the documentation of this file.
1/****************************************************************************
2** Copyright (C) 2020 MikroElektronika d.o.o.
3** Contact: https://www.mikroe.com/contact
4**
5** Permission is hereby granted, free of charge, to any person obtaining a copy
6** of this software and associated documentation files (the "Software"), to deal
7** in the Software without restriction, including without limitation the rights
8** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9** copies of the Software, and to permit persons to whom the Software is
10** furnished to do so, subject to the following conditions:
11** The above copyright notice and this permission notice shall be
12** included in all copies or substantial portions of the Software.
13**
14** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
16** OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
19** OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20** USE OR OTHER DEALINGS IN THE SOFTWARE.
21****************************************************************************/
22
28#ifndef EEPROM8_H
29#define EEPROM8_H
30
31#ifdef __cplusplus
32extern "C"{
33#endif
34
39#ifdef PREINIT_SUPPORTED
40#include "preinit.h"
41#endif
42
43#ifdef MikroCCoreVersion
44 #if MikroCCoreVersion >= 1
45 #include "delays.h"
46 #endif
47#endif
48
49#include "drv_digital_out.h"
50#include "drv_digital_in.h"
51#include "drv_i2c_master.h"
52
63#define EEPROM8_WRITE_ENABLE 0
64#define EEPROM8_WRITE_PROTECT 1
84#define EEPROM8_BLOCK_ADDR_START 0x0000
85#define EEPROM8_BLOCK_ADDR_END 0xFFFFul
86
98#define EEPROM8_NBYTES_MIN 1
99#define EEPROM8_NBYTES_PAGE 128
107#define EEPROM8_SET_DEV_ADDR 0x50
108
109 // eeprom8_set
110
125#define EEPROM8_MAP_MIKROBUS( cfg, mikrobus ) \
126 cfg.scl = MIKROBUS( mikrobus, MIKROBUS_SCL ); \
127 cfg.sda = MIKROBUS( mikrobus, MIKROBUS_SDA ); \
128 cfg.wp = MIKROBUS( mikrobus, MIKROBUS_PWM );
129
130
131 // eeprom8_map
132 // eeprom8
133
150
155typedef struct
156{
157 // Output pins
158 digital_out_t wp;
160 // Modules
161 i2c_master_t i2c;
163 // I2C slave address
166} eeprom8_t;
167
172typedef struct
173{
174 pin_name_t scl;
175 pin_name_t sda;
177 pin_name_t wp;
179 uint32_t i2c_speed;
180 uint8_t i2c_address;
183
188typedef enum
189{
191 EEPROM8_ERROR = -1
192
194
211
226
227
239err_t eeprom8_write_byte( eeprom8_t *ctx, uint16_t reg_addr, uint8_t data_in );
240
252err_t eeprom8_write_page( eeprom8_t *ctx, uint16_t reg_addr, uint8_t *data_in );
253
265err_t eeprom8_read_random_byte( eeprom8_t *ctx, uint16_t reg_addr, uint8_t *data_out );
266
277err_t eeprom8_read_current_byte( eeprom8_t *ctx, uint8_t *data_out );
278
291err_t eeprom8_read_sequential( eeprom8_t *ctx, uint16_t reg_addr, uint16_t n_bytes, uint8_t *data_out );
292
301
310
311#ifdef __cplusplus
312}
313#endif
314#endif // EEPROM8_H
315
316 // eeprom8
317
318// ------------------------------------------------------------------------ END
eeprom8_return_value_t
EEPROM 8 Click return value data.
Definition eeprom8.h:189
@ EEPROM8_ERROR
Definition eeprom8.h:191
@ EEPROM8_OK
Definition eeprom8.h:190
eeprom_i2c_address_selector_t
Click address (memory block) selection.
Definition eeprom8.h:139
@ EEPROM_I2C_ADDR_SEL_2
Definition eeprom8.h:142
@ EEPROM_I2C_ADDR_SEL_6
Definition eeprom8.h:146
@ EEPROM_I2C_ADDR_SEL_5
Definition eeprom8.h:145
@ EEPROM_I2C_ADDR_SEL_4
Definition eeprom8.h:144
@ EEPROM_I2C_ADDR_SEL_0
Definition eeprom8.h:140
@ EEPROM_I2C_ADDR_SEL_3
Definition eeprom8.h:143
@ EEPROM_I2C_ADDR_SEL_1
Definition eeprom8.h:141
@ EEPROM_I2C_ADDR_SEL_7
Definition eeprom8.h:147
err_t eeprom8_init(eeprom8_t *ctx, eeprom8_cfg_t *cfg)
EEPROM 8 initialization function.
err_t eeprom8_write_page(eeprom8_t *ctx, uint16_t reg_addr, uint8_t *data_in)
Page Write function.
err_t eeprom8_write_byte(eeprom8_t *ctx, uint16_t reg_addr, uint8_t data_in)
Byte Write function.
err_t eeprom8_read_current_byte(eeprom8_t *ctx, uint8_t *data_out)
Byte Read function.
err_t eeprom8_read_sequential(eeprom8_t *ctx, uint16_t reg_addr, uint16_t n_bytes, uint8_t *data_out)
Sequential Read function.
err_t eeprom8_read_random_byte(eeprom8_t *ctx, uint16_t reg_addr, uint8_t *data_out)
Random Byte Read function.
void eeprom8_write_enable(eeprom8_t *ctx)
Write Enable function.
void eeprom8_write_protect(eeprom8_t *ctx)
Write Protect function.
void eeprom8_cfg_setup(eeprom8_cfg_t *cfg)
EEPROM 8 configuration object setup function.
EEPROM 8 Click configuration object.
Definition eeprom8.h:173
uint32_t i2c_speed
Definition eeprom8.h:179
pin_name_t wp
Definition eeprom8.h:177
pin_name_t scl
Definition eeprom8.h:174
pin_name_t sda
Definition eeprom8.h:175
uint8_t i2c_address
Definition eeprom8.h:180
EEPROM 8 Click context object.
Definition eeprom8.h:156
i2c_master_t i2c
Definition eeprom8.h:161
uint8_t slave_address
Definition eeprom8.h:164
digital_out_t wp
Definition eeprom8.h:158