Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Loading...
Searching...
No Matches
settings.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2009-2014 The Paparazzi Team
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
28#ifndef CORE_SETTINGS_H
29#define CORE_SETTINGS_H
30
31#include "std.h"
32#include "pprzlink/pprzlink_device.h"
33#include "pprzlink/pprzlink_transport.h"
34
35extern void settings_init(void);
36extern int32_t settings_store(void);
37extern int32_t settings_clear(void);
38extern void settings_parse_msg_SETTING(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
39extern void settings_parse_msg_GET_SETTING(struct link_device *dev, struct transport_tx *trans, uint8_t *buf);
40
41extern bool settings_store_flag;
42extern bool settings_clear_flag;
43
44#define settings_StoreSettings(_v) { settings_store_flag = _v; settings_store(); }
45#define settings_ClearSettings(_v) { settings_clear_flag = _v; settings_clear(); }
46
47/* implemented in arch dependant code */
51
52
53#endif /* CORE_SETTINGS_H */
uint16_t foo
Definition main_demo5.c:58
int32_t persistent_write(void *ptr, uint32_t size)
bool settings_clear_flag
Definition settings.c:43
void settings_parse_msg_GET_SETTING(struct link_device *dev, struct transport_tx *trans, uint8_t *buf)
Definition settings.c:118
void settings_init(void)
Definition settings.c:46
int32_t persistent_read(void *ptr, uint32_t size)
int32_t settings_clear(void)
clear all persistent settings from flash
Definition settings.c:80
int32_t persistent_clear(void)
void settings_parse_msg_SETTING(struct link_device *dev, struct transport_tx *trans, uint8_t *buf)
Definition settings.c:95
bool settings_store_flag
flag for setting feedback.
Definition settings.c:41
int32_t settings_store(void)
store settings marked as persistent to flash
Definition settings.c:60
static const struct usb_device_descriptor dev
Definition usb_ser_hw.c:74
int int32_t
Typedef defining 32 bit int type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.