root / proj / src / utils.c @ 221
History | View | Annotate | Download (990 Bytes)
1 | 144 | up20180655 | #include <lcom/lcf.h> |
---|---|---|---|
2 | |||
3 | #include "utils.h" |
||
4 | |||
5 | #include <stdint.h> |
||
6 | #include "errors.h" |
||
7 | |||
8 | int(util_get_LSB)(uint16_t val, uint8_t *lsb) {
|
||
9 | if (lsb == NULL) return NULL_PTR; |
||
10 | *lsb = val; |
||
11 | return SUCCESS;
|
||
12 | } |
||
13 | |||
14 | int(util_get_MSB)(uint16_t val, uint8_t *msb) {
|
||
15 | if (msb == NULL) return NULL_PTR; |
||
16 | *msb = (val >> 8);
|
||
17 | return SUCCESS;
|
||
18 | } |
||
19 | |||
20 | int (util_sys_inb)(int port, uint8_t *value) { |
||
21 | if(value == NULL) return NULL_PTR; |
||
22 | uint32_t n = 0;
|
||
23 | if(sys_inb(port, &n)) return READ_ERROR; |
||
24 | *value = n; |
||
25 | return SUCCESS;
|
||
26 | } |
||
27 | |||
28 | 145 | up20180655 | int (unsubscribe_interrupt)(int *interrupt_id) { |
29 | if (interrupt_id == NULL) return NULL_PTR; |
||
30 | if(sys_irqrmpolicy(interrupt_id)) return UNSBCR_ERROR; |
||
31 | return SUCCESS;
|
||
32 | 144 | up20180655 | } |
33 | |||
34 | 167 | up20180655 | int32_t min(int32_t a, int32_t b){ return (b < a ? b : a); }
|
35 | int32_t max(int32_t a, int32_t b){ return (a < b ? b : a); }
|
||
36 | 200 | up20180655 | |
37 | double min_d(double a, double b){ return (b < a ? b : a); } |
||
38 | double max_d(double a, double b){ return (a < b ? b : a); } |