blob: 408983e744b478bb0061b1321bf16f609294f882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
* system.c
*
* Created on: Jun 25, 2010
* Author: klabadi & dlopo
*
*
* @note: this file should be re-written to match the environment the
* API is running on
*/
#ifdef __cplusplus
extern "C"
{
#endif
#include "csi_system.h"
#include "csi_log.h"
void system_sleep_ms(unsigned ms)
{
}
int system_thread_create(void* handle, thread_t p_func, void* param)
{
return 0;
}
int system_thread_destruct(void* handle)
{
return 0;
}
int system_start(thread_t thread)
{
return 1;
}
static unsigned system_interrupt_map(interrupt_id_t id)
{
return ~0;
}
int system_interrupt_disable(interrupt_id_t id)
{
if (system_interrupt_map(id) != (unsigned) (~0))
{
return 0;
}
LOG_ERROR("Interrupt not mapped");
return 0;
}
int system_interrupt_enable(interrupt_id_t id)
{
if (system_interrupt_map(id) != (unsigned) (~0))
{
return 0;
}
LOG_ERROR("Interrupt not mapped");
return 0;
}
int system_interrupt_acknowledge(interrupt_id_t id)
{
if (system_interrupt_map(id) != (unsigned) (~0))
{
return 0;
}
LOG_ERROR("Interrupt not mapped");
return 0;
}
int system_interrupt_handler_register(interrupt_id_t id, handler_t handler,
void * param)
{
return 0;
}
int system_interrupt_handler_unregister(interrupt_id_t id)
{
return 0;
}
#ifdef __cplusplus
}
#endif
|