Example program for EVAL-ADXL355

Dependencies:   ADXL355

Committer:
malavikasaji
Date:
Fri May 22 20:30:42 2020 +0000
Revision:
0:fa048f038472
Initial Commit.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
malavikasaji 0:fa048f038472 1 /* Copyright (c) 2019 Analog Devices, Inc. All rights reserved.
malavikasaji 0:fa048f038472 2
malavikasaji 0:fa048f038472 3 Redistribution and use in source and binary forms, with or without modification,
malavikasaji 0:fa048f038472 4 are permitted provided that the following conditions are met:
malavikasaji 0:fa048f038472 5 - Redistributions of source code must retain the above copyright notice,
malavikasaji 0:fa048f038472 6 this list of conditions and the following disclaimer.
malavikasaji 0:fa048f038472 7 - Redistributions in binary form must reproduce the above copyright notice,
malavikasaji 0:fa048f038472 8 this list of conditions and the following disclaimer in the documentation
malavikasaji 0:fa048f038472 9 and/or other materials provided with the distribution.
malavikasaji 0:fa048f038472 10 - Modified versions of the software must be conspicuously marked as such.
malavikasaji 0:fa048f038472 11 - This software is licensed solely and exclusively for use with processors/products
malavikasaji 0:fa048f038472 12 manufactured by or for Analog Devices, Inc.
malavikasaji 0:fa048f038472 13 - This software may not be combined or merged with other code in any manner
malavikasaji 0:fa048f038472 14 that would cause the software to become subject to terms and conditions which
malavikasaji 0:fa048f038472 15 differ from those listed here.
malavikasaji 0:fa048f038472 16 - Neither the name of Analog Devices, Inc. nor the names of its contributors
malavikasaji 0:fa048f038472 17 may be used to endorse or promote products derived from this software without
malavikasaji 0:fa048f038472 18 specific prior written permission.
malavikasaji 0:fa048f038472 19 - The use of this software may or may not infringe the patent rights of one or
malavikasaji 0:fa048f038472 20 more patent holders. This license does not release you from the requirement
malavikasaji 0:fa048f038472 21 that you obtain separate licenses from these patent holders to use this software.
malavikasaji 0:fa048f038472 22
malavikasaji 0:fa048f038472 23 THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. AND CONTRIBUTORS "AS IS" AND
malavikasaji 0:fa048f038472 24 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, NON-INFRINGEMENT,
malavikasaji 0:fa048f038472 25 TITLE, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
malavikasaji 0:fa048f038472 26 NO EVENT SHALL ANALOG DEVICES, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
malavikasaji 0:fa048f038472 27 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, PUNITIVE OR CONSEQUENTIAL DAMAGES
malavikasaji 0:fa048f038472 28 (INCLUDING, BUT NOT LIMITED TO, DAMAGES ARISING OUT OF CLAIMS OF INTELLECTUAL
malavikasaji 0:fa048f038472 29 PROPERTY RIGHTS INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
malavikasaji 0:fa048f038472 30 OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
malavikasaji 0:fa048f038472 31 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
malavikasaji 0:fa048f038472 32 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
malavikasaji 0:fa048f038472 33 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
malavikasaji 0:fa048f038472 34
malavikasaji 0:fa048f038472 35 2019-01-10-7CBSD SLA
malavikasaji 0:fa048f038472 36
malavikasaji 0:fa048f038472 37 */
malavikasaji 0:fa048f038472 38
malavikasaji 0:fa048f038472 39 #include "mbed.h"
malavikasaji 0:fa048f038472 40 #include "platform/mbed_thread.h"
malavikasaji 0:fa048f038472 41
malavikasaji 0:fa048f038472 42
malavikasaji 0:fa048f038472 43 // Blinking rate in milliseconds
malavikasaji 0:fa048f038472 44 #define SLEEP_TIME 500
malavikasaji 0:fa048f038472 45
malavikasaji 0:fa048f038472 46
malavikasaji 0:fa048f038472 47 // Initialise the digital pin LED1 as an output
malavikasaji 0:fa048f038472 48 DigitalOut led1(LED1);
malavikasaji 0:fa048f038472 49 // Initialise the serial object with TX and RX pins
malavikasaji 0:fa048f038472 50 Serial pc(USBTX, USBRX);
malavikasaji 0:fa048f038472 51
malavikasaji 0:fa048f038472 52
malavikasaji 0:fa048f038472 53
malavikasaji 0:fa048f038472 54 // main() runs in its own thread in the OS
malavikasaji 0:fa048f038472 55 int main()
malavikasaji 0:fa048f038472 56 {
malavikasaji 0:fa048f038472 57 pc.printf("Hello World!");
malavikasaji 0:fa048f038472 58 while (true) {
malavikasaji 0:fa048f038472 59 // Blink LED and wait 500 ms
malavikasaji 0:fa048f038472 60 led1 = !led1;
malavikasaji 0:fa048f038472 61 thread_sleep_for(SLEEP_TIME);
malavikasaji 0:fa048f038472 62 }
malavikasaji 0:fa048f038472 63 }
malavikasaji 0:fa048f038472 64