diff options
Diffstat (limited to 'software/mpu/main.c')
-rw-r--r-- | software/mpu/main.c | 70 |
1 files changed, 32 insertions, 38 deletions
diff --git a/software/mpu/main.c b/software/mpu/main.c index 88691ab..8f411d5 100644 --- a/software/mpu/main.c +++ b/software/mpu/main.c @@ -1,38 +1,39 @@ /* - ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -*/ + * + * mur.sat + * + * Somewhen in the year 2012, mur.at will have a nano satellite launched + * into a low earth orbit (310 km above the surface of our planet). The + * satellite itself is a TubeSat personal satellite kit, developed and + * launched by interorbital systems. mur.sat is a joint venture of mur.at, + * ESC im Labor and realraum. + * + * Please visit the project hompage at sat.mur.at for further information. + * + * + * Copyright (C) 2013 Christian Pointner <equinox@mur.at> + * + * This file is part of mur.sat. + * + * mur.sat is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * mur.sat is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with mur.sat. If not, see <http://www.gnu.org/licenses/>. + * + */ #include "ch.h" #include "hal.h" -#include "test.h" - -/* - * Red LED blinker thread, times are in milliseconds. - */ -static WORKING_AREA(waHeartbeat, 128); -static msg_t Heartbeat(void *arg) { - (void)arg; - chRegSetThreadName("blinker"); - while (TRUE) { - palClearPad(GPIOA, GPIOA_LED); - chThdSleepMilliseconds(100); - palSetPad(GPIOA, GPIOA_LED); - chThdSleepMilliseconds(900); - } -} +#include "heartbeat.h" /* * Application entry point. @@ -49,15 +50,8 @@ int main(void) { halInit(); chSysInit(); - /* - * Activates the serial driver 2 using the driver default configuration. - */ - sdStart(&SD2, NULL); - /* - * Creates the blinker thread. - */ - chThdCreateStatic(waHeartbeat, sizeof(waHeartbeat), NORMALPRIO, Heartbeat, NULL); + heartbeatInit(); /* * Normal main() thread activity, in this demo it does nothing except |