test
Fork of mbed-dev by
hal/mbed_flash_api.c@178:d650f5d4c87a, 2017-11-08 (annotated)
- Committer:
- AnnaBridge
- Date:
- Wed Nov 08 13:50:44 2017 +0000
- Revision:
- 178:d650f5d4c87a
- Parent:
- 170:e3b6fe271b81
This updates the lib to the mbed lib v 155
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Kojto | 170:e3b6fe271b81 | 1 | /* mbed Microcontroller Library |
Kojto | 170:e3b6fe271b81 | 2 | * Copyright (c) 2017 ARM Limited |
Kojto | 170:e3b6fe271b81 | 3 | * |
Kojto | 170:e3b6fe271b81 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
Kojto | 170:e3b6fe271b81 | 5 | * you may not use this file except in compliance with the License. |
Kojto | 170:e3b6fe271b81 | 6 | * You may obtain a copy of the License at |
Kojto | 170:e3b6fe271b81 | 7 | * |
Kojto | 170:e3b6fe271b81 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Kojto | 170:e3b6fe271b81 | 9 | * |
Kojto | 170:e3b6fe271b81 | 10 | * Unless required by applicable law or agreed to in writing, software |
Kojto | 170:e3b6fe271b81 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
Kojto | 170:e3b6fe271b81 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Kojto | 170:e3b6fe271b81 | 13 | * See the License for the specific language governing permissions and |
Kojto | 170:e3b6fe271b81 | 14 | * limitations under the License. |
Kojto | 170:e3b6fe271b81 | 15 | */ |
Kojto | 170:e3b6fe271b81 | 16 | |
Kojto | 170:e3b6fe271b81 | 17 | #include "hal/flash_api.h" |
Kojto | 170:e3b6fe271b81 | 18 | |
Kojto | 170:e3b6fe271b81 | 19 | #if DEVICE_FLASH |
Kojto | 170:e3b6fe271b81 | 20 | |
Kojto | 170:e3b6fe271b81 | 21 | #include "platform/mbed_toolchain.h" |
Kojto | 170:e3b6fe271b81 | 22 | #include <string.h> |
Kojto | 170:e3b6fe271b81 | 23 | |
Kojto | 170:e3b6fe271b81 | 24 | MBED_WEAK int32_t flash_read(flash_t *obj, uint32_t address, uint8_t *data, uint32_t size) |
Kojto | 170:e3b6fe271b81 | 25 | { |
Kojto | 170:e3b6fe271b81 | 26 | memcpy(data, (const void *)address, size); |
Kojto | 170:e3b6fe271b81 | 27 | return 0; |
Kojto | 170:e3b6fe271b81 | 28 | } |
Kojto | 170:e3b6fe271b81 | 29 | |
Kojto | 170:e3b6fe271b81 | 30 | #endif |