1 /* 2 * Copyright (c) 2017 Linaro Limited 3 * Copyright (c) 2018-2019 Foundries.io 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 /* 9 * Copyright (c) 2015, Yanzi Networks AB. 10 * All rights reserved. 11 * 12 * Redistribution and use in source and binary forms, with or without 13 * modification, are permitted provided that the following conditions 14 * are met: 15 * 1. Redistributions of source code must retain the above copyright 16 * notice, this list of conditions and the following disclaimer. 17 * 2. Redistributions in binary form must reproduce the above copyright 18 * notice, this list of conditions and the following disclaimer in the 19 * documentation and/or other materials provided with the distribution. 20 * 3. Neither the name of the copyright holder nor the names of its 21 * contributors may be used to endorse or promote products derived 22 * from this software without specific prior written permission. 23 * 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS 25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 27 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 28 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 30 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 33 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 35 * OF THE POSSIBILITY OF SUCH DAMAGE. 36 */ 37 38 /* 39 * Original Authors: 40 * Joakim Eriksson <joakime@sics.se> 41 * Niclas Finne <nfi@sics.se> 42 */ 43 44 #ifndef LWM2M_RW_PLAIN_TEXT_H_ 45 #define LWM2M_RW_PLAIN_TEXT_H_ 46 47 #include "lwm2m_object.h" 48 49 extern const struct lwm2m_writer plain_text_writer; 50 extern const struct lwm2m_reader plain_text_reader; 51 52 size_t plain_text_put_format(struct lwm2m_output_context *out, 53 const char *format, ...); 54 55 size_t plain_text_put_float32fix(struct lwm2m_output_context *out, 56 struct lwm2m_obj_path *path, 57 float32_value_t *value); 58 59 60 int do_read_op_plain_text(struct lwm2m_message *msg, int content_format); 61 int do_write_op_plain_text(struct lwm2m_message *msg); 62 63 #endif /* LWM2M_RW_PLAIN_TEXT_H_ */ 64