-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
38 lines (29 loc) · 1.29 KB
/
main.cpp
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
#include <iostream>
#include "calc.hpp"
#include "Wifi.hpp"
#include "defaultconfig.h"
int main()
{
#ifdef DEBUGINFO
std::cout << DEBUGINFO << std::endl;
#endif
std::cout << "Software Version is" << HELLOAPP_VERSION_MAJOR << "." << HELLOAPP_VERSION_MINOR<<std::endl;
std::cout << sum(3,4);
WIFI_Init();
std::cout << "ProductType is" << ProductType << std::endl;
std::cout << "PRODUCT_YEAR is" << PRODUCT_YEAR << std::endl;
std::cout << "ProductType is 1" << ProductType << std::endl;
std::cout << "PRODUCT_YEAR is 1" << PRODUCT_YEAR << std::endl;
std::cout << "Software Version is" << HELLOAPP_VERSION_MAJOR << "." << HELLOAPP_VERSION_MINOR<<std::endl;
//std::cout << STD_CXX << std::endl;
std::cout << "Software Version is" << HELLOAPP_VERSION_MAJOR << "." << HELLOAPP_VERSION_MINOR<<std::endl;
std::cout << sum(3,4);
WIFI_Init();
std::cout << "ProductType is" << ProductType << std::endl;
std::cout << "PRODUCT_YEAR is" << PRODUCT_YEAR << std::endl;
std::cout << "ProductType is 1" << ProductType << std::endl;
std::cout << "PRODUCT_YEAR is 1" << PRODUCT_YEAR << std::endl;
std::cout << "Software Version is" << HELLOAPP_VERSION_MAJOR << "." << HELLOAPP_VERSION_MINOR<<std::endl;
//std::cout << STD_CXX << std::endl;
return 0;
}