read 32 bit value */
| 267 | read 32 bit value |
| 268 | */ |
| 269 | uint32_t StorageAccess::read_uint32(uint16_t loc) const |
| 270 | { |
| 271 | uint32_t v; |
| 272 | read_block(&v, loc, sizeof(v)); |
| 273 | return v; |
| 274 | } |
| 275 | |
| 276 | /* |
| 277 | read a float |
no outgoing calls
no test coverage detected