added C coding style headers to a few more files

this helps for people running editors like emacs that can read these
and set the right tab levels

git-svn-id: https://arducopter.googlecode.com/svn/trunk@1758 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
tridge60@gmail.com 2011-03-08 12:20:48 +00:00
parent d5ab8f3a79
commit 7f330fbb6c
6 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,4 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
void void
init_pids() init_pids()

View File

@ -1,3 +1,5 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
void init_camera() void init_camera()
{ {
g.rc_camera_pitch.set_angle(4500); g.rc_camera_pitch.set_angle(4500);

View File

@ -1,3 +1,5 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
/* /*
GCS Protocol GCS Protocol

View File

@ -1,3 +1,5 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
/********************************************************************************/ /********************************************************************************/
// Command Event Handlers // Command Event Handlers
/********************************************************************************/ /********************************************************************************/

View File

@ -1,3 +1,5 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
// called by 10 Hz loop // called by 10 Hz loop
// -------------------- // --------------------
void update_commands(void) void update_commands(void)

View File

@ -1,3 +1,5 @@
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
#define INPUT_BUF_LEN 40 #define INPUT_BUF_LEN 40
char input_buffer[INPUT_BUF_LEN]; char input_buffer[INPUT_BUF_LEN];