Sample host software for the Maxim Integrated DS1775, DS75 Digital Thermometer Thermostat IC hosted on the MAX32630FTHR. The DS1775 is suitable for PCs, cell phones, and other thermally sensitive systems.

Dependencies:   max32630fthr DS1775_Digitial_Thermometer_Thermostat USBDevice

main.cpp

Committer:
phonemacro
Date:
2019-04-07
Revision:
3:d1beaf95d945
Parent:
2:aa39032bf778
Child:
4:d3171636a86b

File content as of revision 3:d1beaf95d945:

/*******************************************************************************
* Copyright (C) 2019 Maxim Integrated Products, Inc., All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* 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 MAXIM INTEGRATED 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.
*
* Except as contained in this notice, the name of Maxim Integrated
* Products, Inc. shall not be used except as stated in the Maxim Integrated
* Products, Inc. Branding Policy.
*
* The mere transfer of this software does not imply any licenses
* of trade secrets, proprietary technology, copyrights, patents,
* trademarks, maskwork rights, or any other form of intellectual
* property whatsoever. Maxim Integrated Products, Inc. retains all
* ownership rights.
*******************************************************************************
*/
#include "mbed.h"
#include "max32630fthr.h"
#include "ds1775.h"
#include "ds1775_cpp.h"
#include "USBSerial.h"
 
MAX32630FTHR pegasus(MAX32630FTHR::VIO_3V3); 
 
DigitalOut rLED(LED1);
DigitalOut gLED(LED2);
DigitalOut bLED(LED3);
 
I2C i2cBus(P3_4, P3_5);

// main() runs in its own thread in the OS
// (note the calls to Thread::wait below for delays)
/**
* @brief Sample main program for DS1775
* @version 1.0000.0000
*
* @details Sample main program for DS1775
* The prints are sent to the terminal window (9600, 8n1).
* The program sets the GPIOs to 3.3V and the program
* configures the chip and reads temperatures.
* To run the program, drag and drop the .bin file into the 
* DAPLINK folder. After it finishes flashing, cycle the power or 
* reset the Pegasus (MAX32630FTHR) after flashing by pressing the button on
* the Pegasus next to the battery connector or the button
* on the MAXREFDES100HDK.
*/
int main()
{
    uint32_t i;
    float temperature;
    uint8_t cfg;
    DigitalOut rLED(LED1, LED_OFF);
    DigitalOut gLED(LED2, LED_OFF);
    DigitalOut bLED(LED3, LED_OFF);
    gLED = LED_ON;
    printf("DS1775 DS75 Digital Thermometer and Thermostat example source code.\r\n");
    printf("\r\n");

    DS1775 temp_sensor(i2cBus, DS1775_I2C_SLAVE_ADR_R0);
    i2cBus.frequency(400000);
   
    /* Configure for 9 bit resolution, fault filter 1, 
       active low, comparator, continuous,
     */
    temp_sensor.write_cfg(uint16_t(DS1775_CFG_RESOLUTION_9BIT |
        DS1775_CFG_FAULT_FILTER_6 | DS1775_CFG_OS_POLARITY_ACT_LOW |
        DS1775_CFG_COMPARATOR_MODE | DS1775_CFG_CONTINUOUS));
    for (i = 0; i < 10; i++) {
        wait(DS1775_WAIT_CONV_TIME_9BIT);
        temperature = temp_sensor.read_reg_as_temperature(DS1775_REG_TEMPERATURE);
        printf("Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));
    }
    temperature = temp_sensor.read_reg_as_temperature(DS1775_REG_TOS_HIGH_TRIP);
        printf("TOS Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));
    temp_sensor.read_cfg_reg(&cfg);
    printf("Configuration Register = 0x%02Xh \r\n", cfg);
    
#if 0
    temp_sensor.write_trip_low(-63.9375);
    wait(0.03);
    temperature = temp_sensor.read_reg_as_temperature(DS1775_REG_THYST_LOW_TRIP);
    printf("Thyst Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));

    temp_sensor.write_trip_high(64.0625f);
    wait(0.03);
    temperature = temp_sensor.read_reg_as_temperature(DS1775_REG_TOS_HIGH_TRIP);
    printf("TOS Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));
    printf("\r\n\r\n");
#endif

    printf("\r\n");


    temp_sensor.read_cfg_reg(&cfg);
    printf("Configuration Register = 0x%02Xh \r\n", cfg);
    for (i = 0; i < 8; i++) {
        /* Configure for 12 bit resolution, fault filter 2, 
           active low, interrupt, continous,
        */
        temp_sensor.write_cfg(uint16_t(DS1775_CFG_RESOLUTION_12BIT |
            DS1775_CFG_FAULT_FILTER_6 | DS1775_CFG_OS_POLARITY_ACT_LOW |
            DS1775_CFG_INTERRUPT_MODE | DS1775_CFG_CONTINUOUS));
        wait(DS1775_WAIT_CONV_TIME_9BIT);
        temperature = temp_sensor.read_reg_as_temperature(DS1775_REG_TEMPERATURE);
        printf("Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));
        temp_sensor.write_cfg(uint16_t(DS1775_CFG_RESOLUTION_12BIT |
            DS1775_CFG_FAULT_FILTER_6 | DS1775_CFG_OS_POLARITY_ACT_LOW |
            DS1775_CFG_INTERRUPT_MODE | DS1775_CFG_SHUTDOWN));
        wait(2); /*  leave it in shutdown mode for a while */
    }
    temp_sensor.read_cfg_reg(&cfg);
    printf("Configuration Register = 0x%02Xh \r\n", cfg);

    printf("\r\n\r\n");


#if 1
    temp_sensor.write_trip_low(-55.0f);
    wait(0.03);
    temperature = temp_sensor.read_reg_as_temperature(DS1775_REG_THYST_LOW_TRIP);
    printf("Thyst Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));

    temp_sensor.write_trip_high(125.0f);
    wait(0.03);
    temperature = temp_sensor.read_reg_as_temperature(DS1775_REG_TOS_HIGH_TRIP);
    printf("TOS Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));
    printf("\r\n\r\n");
#endif
#if 0

    /***************************************************************************
     * Call the C code version of the driver
     ***************************************************************************
     */
#include "ds1775_c.h"
    printf("C implementation of the code\r\n");
    ds1775_init(DS1775_I2C_SLAVE_ADR_R0);
    /* Configure for fault filter 1, comparator, continuous,
     * normal format, 8 sps, 12 bit resolution
     */
    ds1775_write_cfg(uint16_t(DS1775_CFG_FAULT_FILTER_1 | 
        DS1775_CFG_COMPARATOR_MODE | DS1775_CFG_CONTINUOUS | 
        DS1775_CFG_NORMAL_FORMAT | DS1775_CFG_CONV_RATE_8 | 
        DS1775_CFG_RESOLUTION_12BIT), i2cBus);
    for (i = 0; i < 10; i++) {
        wait(DS1775_WAIT_CONV_RATE_8);
        temperature = ds1775_read_reg_as_temperature(DS1775_REG_TEMPERATURE,
            i2cBus);
        printf("Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));
    }
    ds1775_read_reg(&cfg, DS1775_REG_CONFIGURATION, i2cBus);
    printf("Configuration Register = 0x%04Xh \r\n", cfg);

#if 0
    ds1775_write_trip_low(-63.9375, i2cBus);
    wait(0.03);
    temperature = ds1775_read_reg_as_temperature(DS1775_REG_THYST_LOW_TRIP, i2cBus);
    printf("Thyst Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, ds1775_celsius_to_fahrenheit(temperature));

    ds1775_write_trip_high(64.0625f, i2cBus);
    wait(0.03);
    temperature = ds1775_read_reg_as_temperature(DS1775_REG_TOS_HIGH_TRIP, i2cBus);
    printf("TOS Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, ds1775_celsius_to_fahrenheit(temperature));
#endif

    printf("\r\n");
    for (i = 0; i < 2; i++) {
        ds1775_write_cfg(uint16_t(DS1775_CFG_FAULT_FILTER_4 | 
            DS1775_CFG_INTERRUPT_MODE | DS1775_CFG_SHUTDOWN |
            DS1775_CFG_EXTENDED_FORMAT| DS1775_CFG_CONV_RATE_0_25 | 
            DS1775_CFG_RESOLUTION_10BIT | DS1775_CFG_ONE_SHOT_START),
            i2cBus);
        wait(DS1775_WAIT_CONV_RATE_0_25);
        temperature = ds1775_read_reg_as_temperature(DS1775_REG_TEMPERATURE,
            i2cBus);
        printf("Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, temp_sensor.celsius_to_fahrenheit(temperature));
    }
    ds1775_read_reg(&cfg, DS1775_REG_CONFIGURATION, i2cBus);
    printf("Configuration Register = 0x%04Xh \r\n", cfg);

#if 0
    temp_sensor.write_trip_low(-127.9375);
    ds1775_write_trip_low(-127.9375, i2cBus);
    wait(0.03);
    temperature = ds1775_read_reg_as_temperature(DS1775_REG_THYST_LOW_TRIP, i2cBus);
    printf("Thyst Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, ds1775_celsius_to_fahrenheit(temperature));

    ds1775_write_trip_high(129.0625f, i2cBus);
    wait(0.03);
    temperature = ds1775_read_reg_as_temperature(DS1775_REG_TOS_HIGH_TRIP, i2cBus);
    printf("TOS Temperature = %3.4f Celsius, %3.4f Fahrenheit\r\n", 
            temperature, ds1775_celsius_to_fahrenheit(temperature));
#endif
  #endif 
    printf("\r\n\r\n\r\n");


    while (true) {  // Blink the green LED 
        gLED = !gLED;
        wait(0.5);
    }
}