1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 15:25:36 +03:00

Merge pull request #11196 from mathiasvr/pr-std-headers

Style: Use angle brackets with standard library headers
This commit is contained in:
J Blackman 2022-06-28 16:06:31 +10:00 committed by GitHub
commit 71fea676e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 27 additions and 24 deletions

View file

@ -18,8 +18,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "stdint.h"
#include <stdbool.h>
#include <stdint.h>
#include "platform.h"

View file

@ -18,8 +18,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "string.h"
#include <stdbool.h>
#include <string.h>
#include "platform.h"

View file

@ -22,9 +22,10 @@
#ifdef USE_CAMERA_CONTROL
#include <math.h>
#include "camera_control.h"
#include "io.h"
#include "math.h"
#include "nvic.h"
#include "pwm_output.h"
#include "time.h"

View file

@ -28,7 +28,7 @@
/* Include(s) -------------------------------------------------------------------------------------------------------*/
#include "stdbool.h"
#include <stdbool.h>
#include <string.h>
#include "platform.h"

View file

@ -25,7 +25,7 @@
/* Include(s) -------------------------------------------------------------------------------------------------------*/
#include "stdbool.h"
#include <stdbool.h>
#include <string.h>
#include "platform.h"

View file

@ -25,7 +25,7 @@
/* Include(s) -------------------------------------------------------------------------------------------------------*/
#include "stdbool.h"
#include <stdbool.h>
#include <string.h>
#include "platform.h"

View file

@ -18,8 +18,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "stdint.h"
#include <stdbool.h>
#include <stdint.h>
#include "platform.h"

View file

@ -18,9 +18,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "stdint.h"
#include "math.h"
#include <stdbool.h>
#include <stdint.h>
#include <math.h>
#include "platform.h"

View file

@ -18,9 +18,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "stdint.h"
#include "string.h"
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "platform.h"

View file

@ -18,9 +18,9 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdbool.h"
#include "stdint.h"
#include "string.h"
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "platform.h"

View file

@ -47,6 +47,8 @@
/* Includes ------------------------------------------------------------------*/
#include <stdbool.h>
#include "platform.h"
#include "build/atomic.h"
@ -56,7 +58,6 @@
#include "usbd_desc.h"
#include "usbd_cdc.h"
#include "usbd_cdc_interface.h"
#include "stdbool.h"
#include "drivers/nvic.h"
#include "drivers/serial_usb_vcp.h"

View file

@ -21,11 +21,12 @@
/* Includes ------------------------------------------------------------------*/
#include <stdbool.h>
#include "platform.h"
#include "usbd_cdc_vcp.h"
#include "stm32f4xx_conf.h"
#include "stdbool.h"
#include "drivers/time.h"
#ifdef USB_OTG_HS_INTERNAL_DMA_ENABLED

View file

@ -15,9 +15,9 @@
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
*/
#include "math.h"
#include "stdint.h"
#include "time.h"
#include <math.h>
#include <stdint.h>
#include <time.h>
extern "C" {
#include "common/axis.h"