mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
0.2.2 I2C_24LC25
This commit is contained in:
parent
a2667c9220
commit
882289ee55
@ -1,3 +1,18 @@
|
||||
platforms:
|
||||
rpipico:
|
||||
board: rp2040:rp2040:rpipico
|
||||
package: rp2040:rp2040
|
||||
gcc:
|
||||
features:
|
||||
defines:
|
||||
- ARDUINO_ARCH_RP2040
|
||||
warnings:
|
||||
flags:
|
||||
|
||||
packages:
|
||||
rp2040:rp2040:
|
||||
url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
|
||||
|
||||
compile:
|
||||
# Choosing to run compilation tests on 2 different Arduino platforms
|
||||
platforms:
|
||||
@ -9,3 +24,5 @@ compile:
|
||||
- esp32
|
||||
# - esp8266
|
||||
# - mega2560
|
||||
- rpipico
|
||||
|
||||
|
48
libraries/I2C_24LC1025/CHANGELOG..md
Normal file
48
libraries/I2C_24LC1025/CHANGELOG..md
Normal file
@ -0,0 +1,48 @@
|
||||
# Change Log I2C_24LC1025
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
|
||||
## [0.2.2]
|
||||
- add changelog.md
|
||||
- add RP2040 to build-CI
|
||||
- minor edits
|
||||
|
||||
|
||||
## [0.2.0] - 2022-06-08
|
||||
- add verify functions
|
||||
- improve documentation / comments
|
||||
## [0.2.1] - 2022-06-11
|
||||
- update documentation
|
||||
- minor edits
|
||||
- minor improvements / bug fixes
|
||||
- add get/setExtraWriteCycleTime()
|
||||
|
||||
----
|
||||
|
||||
## [0.1.5] - 2021-08-30
|
||||
- fix #3 I2C_DEVICESIZE_24LC512 => I2C_DEVICESIZE_24LC1025
|
||||
|
||||
## [0.1.4] - 2021-05-27
|
||||
- fix library.properties
|
||||
|
||||
## [0.1.6] - 2021-12-19
|
||||
- update library.json
|
||||
- update license
|
||||
- minor edits
|
||||
|
||||
## [0.1.3] - 2021-02-02
|
||||
- add updateBlock()
|
||||
|
||||
## [0.1.2] - 2021-01-31
|
||||
- fix reading over 64K block border
|
||||
|
||||
## [0.1.1] - 2021-01-20
|
||||
- major redo
|
||||
|
||||
## [0.1.0] - 2019-12-11
|
||||
- initial version (not tested)
|
||||
|
||||
|
@ -1,23 +1,11 @@
|
||||
//
|
||||
// FILE: I2C_24LC1025.cpp
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.2.1
|
||||
// VERSION: 0.2.2
|
||||
// PURPOSE: I2C_24LC1025 library for Arduino with EEPROM I2C_24LC1025 et al.
|
||||
// URL: https://github.com/RobTillaart/I2C_24LC1025
|
||||
//
|
||||
// HISTORY:
|
||||
// 0.1.0 2019-12-11 initial version (not tested)
|
||||
// 0.1.1 2021-01-20 major redo
|
||||
// 0.1.2 2021-01-31 fix reading over 64K block border
|
||||
// 0.1.3 2021-02-02 add updateBlock();
|
||||
// 0.1.4 2021-05-27 fix library.properties;
|
||||
// 0.1.5 2021-08-30 fix #3 I2C_DEVICESIZE_24LC512 => I2C_DEVICESIZE_24LC1025
|
||||
// 0.1.6 2021-12-19 update library.json, license, minor edits
|
||||
// 0.2.0 2022-06-08 add verify functions.
|
||||
// improve documentation / comments
|
||||
// 0.2.1 2022-06-11 update documentation, minor edits
|
||||
// minor improvements / bug fixes
|
||||
// add get/setExtraWriteCycleTime()
|
||||
// HISTORY: See changelog.md
|
||||
|
||||
|
||||
#include "I2C_24LC1025.h"
|
||||
|
@ -2,18 +2,18 @@
|
||||
//
|
||||
// FILE: I2C_24LC1025.h
|
||||
// AUTHOR: Rob Tillaart
|
||||
// VERSION: 0.2.1
|
||||
// VERSION: 0.2.2
|
||||
// PURPOSE: I2C_24LC1025 library for Arduino with EEPROM 24LC1025 et al.
|
||||
// URL: https://github.com/RobTillaart/I2C_24LC1025
|
||||
//
|
||||
// HISTORY: See I2C_24LC1025.cpp
|
||||
// HISTORY: See changelog.md
|
||||
|
||||
|
||||
#include "Arduino.h"
|
||||
#include "Wire.h"
|
||||
|
||||
|
||||
#define I2C_24LC1025_VERSION (F("0.2.1"))
|
||||
#define I2C_24LC1025_VERSION (F("0.2.2"))
|
||||
|
||||
|
||||
#define I2C_DEVICESIZE_24LC1025 131072
|
||||
|
@ -113,13 +113,13 @@ than 5 milliseconds which is the minimum.
|
||||
The library does not offer multiple EEPROMS as one continuous storage device.
|
||||
|
||||
|
||||
## Operation
|
||||
|
||||
See examples
|
||||
|
||||
|
||||
## Future
|
||||
|
||||
- See I2C EEPROM as this library is following.
|
||||
- add examples
|
||||
|
||||
|
||||
## Operation
|
||||
|
||||
See examples
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
"type": "git",
|
||||
"url": "https://github.com/RobTillaart/I2C_24LC1025"
|
||||
},
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"license": "MIT",
|
||||
"frameworks": "arduino",
|
||||
"platforms": "*",
|
||||
|
@ -1,5 +1,5 @@
|
||||
name=I2C_24LC1025
|
||||
version=0.2.1
|
||||
version=0.2.2
|
||||
author=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
|
||||
sentence=Library for 24FC1025 I2C EEPROM
|
||||
|
Loading…
Reference in New Issue
Block a user