nkjnm

Dependencies:   MAX44000 nexpaq_mdk

Fork of LED_Demo by Maxim nexpaq

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "test_env.h"
00003 #include "rtos.h"
00004 
00005 #if defined(MBED_RTOS_SINGLE_THREAD)
00006   #error [NOT_SUPPORTED] test not supported
00007 #endif
00008 
00009 typedef struct {
00010     float    voltage;   /* AD result of measured voltage */
00011     float    current;   /* AD result of measured current */
00012     uint32_t counter;   /* A counter value               */
00013 } mail_t;
00014 
00015 #define CREATE_VOLTAGE(COUNTER) (COUNTER * 0.1) * 33
00016 #define CREATE_CURRENT(COUNTER) (COUNTER * 0.1) * 11
00017 #define QUEUE_SIZE       16
00018 #define QUEUE_PUT_DELAY  100
00019 
00020 /*
00021  * The stack size is defined in cmsis_os.h mainly dependent on the underlying toolchain and
00022  * the C standard library. For GCC, ARM_STD and IAR it is defined with a size of 2048 bytes
00023  * and for ARM_MICRO 512. Because of reduce RAM size some targets need a reduced stacksize.
00024  */
00025 #if (defined(TARGET_STM32L053R8) || defined(TARGET_STM32L053C8)) && defined(TOOLCHAIN_GCC)
00026     #define STACK_SIZE DEFAULT_STACK_SIZE/4
00027 #elif (defined(TARGET_STM32F030R8)) && defined(TOOLCHAIN_GCC)
00028     #define STACK_SIZE DEFAULT_STACK_SIZE/2
00029 #elif (defined(TARGET_STM32F030R8)) && defined(TOOLCHAIN_IAR)
00030     #define STACK_SIZE DEFAULT_STACK_SIZE/2
00031 #elif (defined(TARGET_EFM32HG_STK3400)) && !defined(TOOLCHAIN_ARM_MICRO)
00032     #define STACK_SIZE 512
00033 #elif (defined(TARGET_EFM32LG_STK3600) || defined(TARGET_EFM32WG_STK3800) || defined(TARGET_EFM32PG_STK3401)) && !defined(TOOLCHAIN_ARM_MICRO)
00034     #define STACK_SIZE 768
00035 #elif (defined(TARGET_EFM32GG_STK3700)) && !defined(TOOLCHAIN_ARM_MICRO)
00036     #define STACK_SIZE 1536
00037 #elif defined(TARGET_MCU_NRF51822)
00038     #define STACK_SIZE 768
00039 #else
00040     #define STACK_SIZE DEFAULT_STACK_SIZE
00041 #endif
00042 
00043 Mail<mail_t, QUEUE_SIZE> mail_box;
00044 
00045 void send_thread (void const *argument) {
00046     static uint32_t i = 10;
00047     while (true) {
00048         i++; // fake data update
00049         mail_t *mail = mail_box.alloc();
00050         mail->voltage = CREATE_VOLTAGE(i);
00051         mail->current = CREATE_CURRENT(i);
00052         mail->counter = i;
00053         mail_box.put(mail);
00054         Thread::wait(QUEUE_PUT_DELAY);
00055     }
00056 }
00057 
00058 int main (void) {
00059     MBED_HOSTTEST_TIMEOUT(20);
00060     MBED_HOSTTEST_SELECT(default_auto);
00061     MBED_HOSTTEST_DESCRIPTION(Mail messaging);
00062     MBED_HOSTTEST_START("RTOS_6");
00063 
00064     Thread thread(send_thread, NULL, osPriorityNormal, STACK_SIZE);
00065     bool result = true;
00066     int result_counter = 0;
00067 
00068     while (true) {
00069         osEvent evt = mail_box.get();
00070         if (evt.status == osEventMail) {
00071             mail_t *mail = (mail_t*)evt.value.p;
00072             const float expected_voltage = CREATE_VOLTAGE(mail->counter);
00073             const float expected_current = CREATE_CURRENT(mail->counter);
00074             // Check using macros if received values correspond to values sent via queue
00075             bool expected_values = (expected_voltage == mail->voltage) &&
00076                                    (expected_current == mail->current);
00077             result = result && expected_values;
00078             const char *result_msg = expected_values ? "OK" : "FAIL";
00079             printf("%3d %.2fV %.2fA ... [%s]\r\n", mail->counter,
00080                                                    mail->voltage,
00081                                                    mail->current,
00082                                                    result_msg);
00083             mail_box.free(mail);
00084             if (result == false || ++result_counter == QUEUE_SIZE) {
00085                 break;
00086             }
00087         }
00088     }
00089     MBED_HOSTTEST_RESULT(result);
00090     return 0;
00091 }