forked from platformio/platformio-core
19 lines
180 B
Arduino
19 lines
180 B
Arduino
![]() |
|
||
|
struct MyItem {
|
||
|
byte foo[50];
|
||
|
int bar;
|
||
|
};
|
||
|
|
||
|
void setup() {
|
||
|
struct MyItem item1;
|
||
|
myFunction(&item1);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
|
||
|
}
|
||
|
|
||
|
void myFunction(struct MyItem *item) {
|
||
|
|
||
|
}
|