Add LTE-RRC example

This commit is contained in:
Bi-Ruei, Chiu 2017-04-21 12:17:29 +08:00
parent 0eca8c3227
commit 81ac21519b
5 changed files with 3696 additions and 0 deletions

2
.gitignore vendored
View File

@ -55,6 +55,8 @@ doc/docsrc/*.xdv
/examples/*/*.h
/examples/*/*dump
/examples/*/.tmp.*
!/examples/*/Makefile
!/examples/*/config.h
# /libasn1compiler/
/libasn1compiler/check_compiler

View File

@ -33,6 +33,7 @@ EXTRA_DIST = \
sample.source.RRC \
sample.source.TAP3 \
sample.source.PKIX1 \
sample.source.LTE-RRC \
sample.makefile.regen
CLEANFILES = $(ASN1_FILES_1) $(ASN1_FILES_2) $(ASN1_FILES_3)

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
extern int opt_debug;
#define ASN_DEBUG(fmt, args...) do { \
if(opt_debug < 2) break; \
fprintf(stderr, fmt, ##args); \
fprintf(stderr, " (%s:%d)\n", \
__FILE__, __LINE__); \
} while(0)