2 * This file is part of Cleanflight.
4 * Cleanflight is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * Cleanflight is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
20 #include "drivers/system.h"
21 #include "config/config_streamer.h"
22 #include "build/build_config.h"
24 #if !defined(CONFIG_IN_FLASH)
25 SLOW_RAM
uint8_t eepromData
[EEPROM_SIZE
];
29 extern void config_streamer_impl_unlock(void);
30 extern void config_streamer_impl_lock(void);
31 extern int config_streamer_impl_write_word(config_streamer_t
*c
, config_streamer_buffer_align_type_t
*buffer
);
33 void config_streamer_init(config_streamer_t
*c
)
35 memset(c
, 0, sizeof(*c
));
38 void config_streamer_start(config_streamer_t
*c
, uintptr_t base
, int size
)
40 // base must start at FLASH_PAGE_SIZE boundary when using embedded flash.
45 config_streamer_impl_unlock();
51 int config_streamer_write(config_streamer_t
*c
, const uint8_t *p
, uint32_t size
)
53 if ((c
->address
+ size
) > c
->end
) {
54 // trying to write past end of streamer
58 for (const uint8_t *pat
= p
; pat
!= (uint8_t*)p
+ size
; pat
++) {
59 c
->buffer
.b
[c
->at
++] = *pat
;
61 if (c
->at
== sizeof(c
->buffer
)) {
62 c
->err
= config_streamer_impl_write_word(c
, &c
->buffer
.w
);
69 int config_streamer_status(config_streamer_t
*c
)
74 int config_streamer_flush(config_streamer_t
*c
)
77 if ((c
->address
+ c
->at
) > c
->end
) {
80 memset(c
->buffer
.b
+ c
->at
, 0, sizeof(c
->buffer
) - c
->at
);
81 c
->err
= config_streamer_impl_write_word(c
, &c
->buffer
.w
);
87 int config_streamer_finish(config_streamer_t
*c
)
90 config_streamer_impl_lock();