Use direct #includes instead of libopenstm32.h.

This commit is contained in:
Uwe Hermann
2010-03-04 21:25:25 +01:00
parent 92194abda4
commit e7cadf0822
8 changed files with 11 additions and 11 deletions

View File

@@ -17,8 +17,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <libopenstm32.h>
#define WEAK __attribute__ ((weak))
void main(void);
@@ -96,7 +94,7 @@ void WEAK dma2_channel3_isr(void);
void WEAK dma2_channel4_5_isr(void);
__attribute__ ((section(".vectors")))
void (*const vector_table[]) (void) = {
void (*const vector_table[]) (void) = {
(void *)0x20000800, /* Use 2KB stack (0x800 bytes). */
main, /* Use main() as reset vector for now. */
nmi_handler,
@@ -181,6 +179,7 @@ void blocking_handler(void)
void null_handler(void)
{
/* Do nothing. */
}
#pragma weak nmi_handler = null_handler