Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.
Dependents: 1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB
Fork of mbed by
buffer.h@119:02e90d8d9c7d, 2016-04-04 (annotated)
- Committer:
- elijahorr
- Date:
- Mon Apr 04 13:55:36 2016 +0000
- Revision:
- 119:02e90d8d9c7d
- Parent:
- 98:8ab26030e058
-changed PWM pins
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Kojto | 98:8ab26030e058 | 1 | /* mbed Microcontroller Library |
Kojto | 98:8ab26030e058 | 2 | * Copyright (c) 2014-2015 ARM Limited |
Kojto | 98:8ab26030e058 | 3 | * |
Kojto | 98:8ab26030e058 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
Kojto | 98:8ab26030e058 | 5 | * you may not use this file except in compliance with the License. |
Kojto | 98:8ab26030e058 | 6 | * You may obtain a copy of the License at |
Kojto | 98:8ab26030e058 | 7 | * |
Kojto | 98:8ab26030e058 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Kojto | 98:8ab26030e058 | 9 | * |
Kojto | 98:8ab26030e058 | 10 | * Unless required by applicable law or agreed to in writing, software |
Kojto | 98:8ab26030e058 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
Kojto | 98:8ab26030e058 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Kojto | 98:8ab26030e058 | 13 | * See the License for the specific language governing permissions and |
Kojto | 98:8ab26030e058 | 14 | * limitations under the License. |
Kojto | 98:8ab26030e058 | 15 | */ |
Kojto | 98:8ab26030e058 | 16 | #ifndef MBED_BUFFER_H |
Kojto | 98:8ab26030e058 | 17 | #define MBED_BUFFER_H |
Kojto | 98:8ab26030e058 | 18 | |
Kojto | 98:8ab26030e058 | 19 | #include <stddef.h> |
Kojto | 98:8ab26030e058 | 20 | |
Kojto | 98:8ab26030e058 | 21 | /** Generic buffer structure |
Kojto | 98:8ab26030e058 | 22 | */ |
Kojto | 98:8ab26030e058 | 23 | typedef struct buffer_s { |
Kojto | 98:8ab26030e058 | 24 | void *buffer; /**< the pointer to a buffer */ |
Kojto | 98:8ab26030e058 | 25 | size_t length; /**< the buffer length */ |
Kojto | 98:8ab26030e058 | 26 | size_t pos; /**< actual buffer position */ |
Kojto | 98:8ab26030e058 | 27 | uint8_t width; /**< The buffer unit width (8, 16, 32, 64), used for proper *buffer casting */ |
Kojto | 98:8ab26030e058 | 28 | } buffer_t; |
Kojto | 98:8ab26030e058 | 29 | |
Kojto | 98:8ab26030e058 | 30 | #endif |