123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #include "hal.h"
- #include "ch.h"
- #include "nil_test_root.h"
- #include "oslib_test_root.h"
- static THD_WORKING_AREA(waThread1, 128);
- static THD_FUNCTION(Thread1, arg) {
- (void)arg;
-
- palClearLine(LINE_ARD_D13);
- palSetLineMode(LINE_ARD_D13, PAL_MODE_OUTPUT_PUSHPULL);
- while (true) {
- palSetLine(LINE_ARD_D13);
- chThdSleepMilliseconds(500);
- palClearLine(LINE_ARD_D13);
- chThdSleepMilliseconds(500);
- }
- }
- THD_WORKING_AREA(waThread2, 256);
- THD_FUNCTION(Thread2, arg) {
- (void)arg;
-
- sdStart(&SD1, NULL);
-
- chnWrite(&SD1, (const uint8_t *)"Hello World!\r\n", 14);
-
- while (true) {
- if (palReadLine(LINE_BUTTON_USER)) {
- test_execute((BaseSequentialStream *)&SD1, &nil_test_suite);
- test_execute((BaseSequentialStream *)&SD1, &oslib_test_suite);
- }
- chThdSleepMilliseconds(500);
- }
- }
- THD_TABLE_BEGIN
- THD_TABLE_ENTRY(waThread1, "blinker1", Thread1, NULL)
- THD_TABLE_ENTRY(wa_test_support, "test_support", test_support, (void *)&nil.threads[2])
- THD_TABLE_ENTRY(waThread2, "tester", Thread2, NULL)
- THD_TABLE_END
- int main(void) {
-
- halInit();
- chSysInit();
-
- while (true) {
- }
- }
|