Access to huge data memory with 8-bit AVR. More...
#include <hugemem.h>#include <assert.h>Go to the source code of this file.
Functions | |
| uint_fast16_t | hugemem_read16 (const hugemem_ptr_t from) |
| Read 16-bit value stored at huge memory address from. | |
| uint_fast32_t | hugemem_read32 (const hugemem_ptr_t from) |
| Read 32-bit value stored at huge memory address from. | |
| void | hugemem_read_block (void *to, const hugemem_ptr_t from, size_t size) |
| Read size bytes from huge memory address from into buffer at address to. | |
| void | hugemem_write16 (hugemem_ptr_t to, uint_fast16_t val) |
| Write 16-bit value val to huge memory address to. | |
| void | hugemem_write32 (hugemem_ptr_t to, uint_fast32_t val) |
| Write 32-bit value val to huge memory address to. | |
| void | hugemem_write_block (hugemem_ptr_t to, const void *from, size_t size) |
| Write size bytes from buffer at address from to huge memory address to. | |
Access to huge data memory with 8-bit AVR.
Copyright (C) 2009 Atmel Corporation. All rights reserved.
Definition in file arch_hugemem.c.
1.6.3