/*
 * main.c
 *
 *  Created on: 24.10.2010
 *      Author: Oliver Behr
 */
#include "stm32f10x.h"         /* Super-Master-Header for STM32 */
#include "stm32f10x_it.h"      /* Interrupt handlers */

#include "stm32f10x_conf.h"
#include "configuration.h"

extern uint32_t _isr_vectorsflash_offs;

int main(void) {
	NVIC_SetVectorTable(NVIC_VectTab_FLASH, (uint32_t)&_isr_vectorsflash_offs);

	uint32_t i = 4;
	while (1) {
		i++;
	}

	return 0;
}
