Barometer program : Data Logger function includes Barometer & temperature (BMP180), Humidity & temp. (RHT03), Sunshine (Cds), RTC(M41T62) data. : Logging data saves into EEPROM (AT24C1024) using ring buffer function.

Dependencies:   AT24C1024 RHT03 TextLCD BMP180 M41T62

Fork of mbed_blinky by Mbed

Please see https://mbed.org/users/kenjiArai/notebook/mbed-lpc1114fn28-barometer-with-data-logging/#

mon_hw_config.h

Committer:
kenjiArai
Date:
2014-07-03
Revision:
16:f164f8912201
Parent:
15:065fbeddc305
Child:
18:b3a27f681171

File content as of revision 16:f164f8912201:

/*
 * mbed Headder file for the mbed LPC1114FN28 
 *
 *  Copyright (c) 2014 Kenji Arai / JH1PJL
 *  http://www.page.sannet.ne.jp/kenjia/index.html
 *  http://mbed.org/users/kenjiArai/
 *      Created: June       1st, 2014
 *      Revised: July       3rd, 2014
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
 * DAMAGES OR OTHER  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#ifndef _MON_HW_CONF_H_
#define _MON_HW_CONF_H_

//  Definition ------------------------------------------------------------------------------------
#define     DEBUG               0

#define     USE_MEM             0
#define     USE_REG_SPI_UART    0
#define     USE_PORT            0
#define     USE_REG_I2C         1
#define     USE_SYS             1
#define     USE_EEP             1

#endif  // _MON_HW_CONF_H_