~ruther/CTU-FEE-B0B35APO-Semestral-project

ref: 6603bec6ddc5e877d081d0438da128c656f11738 CTU-FEE-B0B35APO-Semestral-project/lib-pheripherals/include/mzapo_pheripherals.h -rw-r--r-- 480 bytes
6603bec6 — František Boháček fix: make Makefile delete old files if architecture is switched 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __MZAPO_PHERIPHERALS_H__
#define __MZAPO_PHERIPHERALS_H__

#include "mzapo_led_strip.h"
#include "mzapo_parlcd.h"
#include "mzapo_phys.h"
#include "mzapo_rgb_led.h"
#include "display_utils.h"

#ifdef __cplusplus
extern "C" {
#endif

  mzapo_ledstrip_t mzapo_create_ledstrip();
  mzapo_rgb_led_t mzapo_create_rgb_led();
  display_t mzapo_create_display();

  void *mzapo_get_knobs_address();

#ifdef __cplusplus
} /* extern "C"*/
#endif

#endif // __MZAPO_PHERIPHERALS_H__