24 lines
483 B
C
24 lines
483 B
C
|
/******************************************************************************
|
||
|
*
|
||
|
* Copyright (c) 2017-2020 by Löwenware Ltd
|
||
|
* Please, refer LICENSE file for legal information
|
||
|
*
|
||
|
******************************************************************************/
|
||
|
|
||
|
/**
|
||
|
* @file task.c
|
||
|
* @author Ilja Kartašov <ik@lowenware.com>
|
||
|
* @brief
|
||
|
*
|
||
|
* @see https://lowenware.com/
|
||
|
*/
|
||
|
|
||
|
#include "task.h"
|
||
|
|
||
|
|
||
|
unsigned long
|
||
|
Task_scheduleFromISR(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|