Add initial minimal rcc.h implementation (not complete).

This commit is contained in:
Uwe Hermann 2009-07-18 05:34:38 +02:00
parent 526cb01aaa
commit 355701525e
2 changed files with 31 additions and 0 deletions

View File

@ -23,6 +23,7 @@
#include "libopenstm32/common.h"
#include "libopenstm32/memorymap.h"
#include "libopenstm32/rcc.h"
#include "libopenstm32/gpio.h"
#endif

View File

@ -0,0 +1,30 @@
/*
* This file is part of the libopenstm32 project.
*
* Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef LIBOPENSTM32_RCC_H
#define LIBOPENSTM32_RCC_H
#include "libopenstm32.h"
#define RCC_APB2ENR MMIO32(RCC_BASE + 0x18)
#define RCC_IOPCEN (1 << 4)
#endif