forked from Elron_dev/elbear_arduino_bsp
- обновлен elbear_fw_bootloader - добавлена проверка контрольной суммы каждой строки hex файла. - в модуль работы с АЦП добавлена функция analogReadResolution(). Функция analogRead() теперь возвращает усредненное по 10 измерениям значение. - общая функция обработки прерываний перенесена в память RAM. Обработчики прерываний модулей External Interrupts и Advanced I/O (функция tone()) так же перенесены в память RAM для увеличения скорости выполнения кода. - в пакет добавлены библиотеки EEPROM, Servo, SoftSerial, NeoPixel, MFRC522 адаптированные для работы с платой Elbear Ace-Uno. - добавлено описание особенностей работы с пакетом
56 lines
981 B
C++
56 lines
981 B
C++
/***
|
|
eeprom_iteration example.
|
|
|
|
A set of example snippets highlighting the
|
|
simplest methods for traversing the EEPROM.
|
|
|
|
Running this sketch is not necessary, this is
|
|
simply highlighting certain programming methods.
|
|
***/
|
|
|
|
#include <EEPROM.h>
|
|
|
|
void setup() {
|
|
EEPROM.begin();
|
|
|
|
/***
|
|
Iterate the EEPROM using a for loop.
|
|
***/
|
|
|
|
for (int index = 0 ; index < EEPROM.length() ; index++) {
|
|
|
|
//Add one to each cell in the EEPROM
|
|
EEPROM[ index ] += 1;
|
|
}
|
|
|
|
/***
|
|
Iterate the EEPROM using a while loop.
|
|
***/
|
|
|
|
int index = 0;
|
|
|
|
while (index < EEPROM.length()) {
|
|
|
|
//Add one to each cell in the EEPROM
|
|
EEPROM[ index ] += 1;
|
|
index++;
|
|
}
|
|
|
|
/***
|
|
Iterate the EEPROM using a do-while loop.
|
|
***/
|
|
|
|
int idx = 0; //Used 'idx' to avoid name conflict with 'index' above.
|
|
|
|
do {
|
|
|
|
//Add one to each cell in the EEPROM
|
|
EEPROM[ idx ] += 1;
|
|
idx++;
|
|
} while (idx < EEPROM.length());
|
|
|
|
|
|
} //End of setup function.
|
|
|
|
void loop() {}
|