mirror of
https://github.com/google/pebble.git
synced 2025-05-29 06:23:13 +00:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
34
third_party/nanopb/examples/platformio/src/pio_esp32_idf.c
vendored
Normal file
34
third_party/nanopb/examples/platformio/src/pio_esp32_idf.c
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
#include "pb_encode.h"
|
||||
#include "pb_decode.h"
|
||||
|
||||
#include "test.h"
|
||||
|
||||
#include "pio_without_options.pb.h"
|
||||
|
||||
void app_main() {
|
||||
int status = 0;
|
||||
|
||||
uint8_t buffer[256];
|
||||
pb_ostream_t ostream;
|
||||
pb_istream_t istream;
|
||||
size_t written;
|
||||
|
||||
TestMessageWithoutOptions original = TestMessageWithoutOptions_init_zero;
|
||||
original.number = 45;
|
||||
|
||||
ostream = pb_ostream_from_buffer(buffer, sizeof(buffer));
|
||||
|
||||
TEST(pb_encode(&ostream, &TestMessageWithoutOptions_msg, &original));
|
||||
|
||||
written = ostream.bytes_written;
|
||||
|
||||
istream = pb_istream_from_buffer(buffer, written);
|
||||
|
||||
TestMessageWithoutOptions decoded = TestMessageWithoutOptions_init_zero;
|
||||
|
||||
TEST(pb_decode(&istream, &TestMessageWithoutOptions_msg, &decoded));
|
||||
|
||||
TEST(decoded.number == 45);
|
||||
|
||||
return status;
|
||||
}
|
35
third_party/nanopb/examples/platformio/src/pio_with_options.c
vendored
Normal file
35
third_party/nanopb/examples/platformio/src/pio_with_options.c
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
#include "pb_encode.h"
|
||||
#include "pb_decode.h"
|
||||
|
||||
#include "test.h"
|
||||
|
||||
#include "pio_with_options.pb.h"
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
int status = 0;
|
||||
|
||||
uint8_t buffer[256];
|
||||
pb_ostream_t ostream;
|
||||
pb_istream_t istream;
|
||||
size_t written;
|
||||
|
||||
TestMessageWithOptions original = TestMessageWithOptions_init_zero;
|
||||
strcpy(original.str,"Hello");
|
||||
|
||||
ostream = pb_ostream_from_buffer(buffer, sizeof(buffer));
|
||||
|
||||
TEST(pb_encode(&ostream, &TestMessageWithOptions_msg, &original));
|
||||
|
||||
written = ostream.bytes_written;
|
||||
|
||||
istream = pb_istream_from_buffer(buffer, written);
|
||||
|
||||
TestMessageWithOptions decoded = TestMessageWithOptions_init_zero;
|
||||
|
||||
TEST(pb_decode(&istream, &TestMessageWithOptions_msg, &decoded));
|
||||
|
||||
TEST(strcmp(decoded.str,"Hello") == 0);
|
||||
|
||||
return status;
|
||||
}
|
35
third_party/nanopb/examples/platformio/src/pio_without_options.c
vendored
Normal file
35
third_party/nanopb/examples/platformio/src/pio_without_options.c
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
#include "pb_encode.h"
|
||||
#include "pb_decode.h"
|
||||
|
||||
#include "test.h"
|
||||
|
||||
#include "pio_without_options.pb.h"
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
int status = 0;
|
||||
|
||||
uint8_t buffer[256];
|
||||
pb_ostream_t ostream;
|
||||
pb_istream_t istream;
|
||||
size_t written;
|
||||
|
||||
TestMessageWithoutOptions original = TestMessageWithoutOptions_init_zero;
|
||||
original.number = 45;
|
||||
|
||||
ostream = pb_ostream_from_buffer(buffer, sizeof(buffer));
|
||||
|
||||
TEST(pb_encode(&ostream, &TestMessageWithoutOptions_msg, &original));
|
||||
|
||||
written = ostream.bytes_written;
|
||||
|
||||
istream = pb_istream_from_buffer(buffer, written);
|
||||
|
||||
TestMessageWithoutOptions decoded = TestMessageWithoutOptions_init_zero;
|
||||
|
||||
TEST(pb_decode(&istream, &TestMessageWithoutOptions_msg, &decoded));
|
||||
|
||||
TEST(decoded.number == 45);
|
||||
|
||||
return status;
|
||||
}
|
9
third_party/nanopb/examples/platformio/src/test.h
vendored
Normal file
9
third_party/nanopb/examples/platformio/src/test.h
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#define TEST(x) \
|
||||
if (!(x)) { \
|
||||
fprintf(stderr, "\033[31;1mFAILED:\033[22;39m %s:%d %s\n", __FILE__, __LINE__, #x); \
|
||||
status = 1; \
|
||||
} else { \
|
||||
printf("\033[32;1mOK:\033[22;39m %s\n", #x); \
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue