My Project
 All Classes Functions Variables Pages
SOC.h
1 /*
2  * SOC.h
3  *
4  * Created on: May 16, 2017
5  * Author: kolban
6  */
7 
8 #ifndef COMPONENTS_CPP_UTILS_SOC_H_
9 #define COMPONENTS_CPP_UTILS_SOC_H_
10 
11 class SOC {
12 public:
13  SOC();
14  virtual ~SOC();
15  class I2S {
16  public:
17  static void dump();
18  };
19 };
20 
21 #endif /* COMPONENTS_CPP_UTILS_SOC_H_ */
static void dump()
Dump the status of the I2S peripheral.
Definition: SOC.cpp:25
Definition: SOC.h:15
Definition: SOC.h:11