1. 30 Sep, 2018 1 commit
  2. 28 Sep, 2018 1 commit
    • Bi-Ruei, Chiu's avatar
      Add support of extension group inside CHOICE type · 3d76a039
      Bi-Ruei, Chiu authored
      In LTE-RRC 36.331 15.3.0, there is :
      
          RLC-Config-NB-r13 ::= CHOICE {
              am    SEQUENCE {
                  ul-AM-RLC-r13                UL-AM-RLC-NB-r13,
                  dl-AM-RLC-r13                DL-AM-RLC-NB-r13
              },
              ...,
              [[  um-Bi-Directional-r15        NULL,
                  um-Uni-Directional-UL-r15    NULL,
                  um-Uni-Directional-DL-r15    NULL
              ]]
          }
      
      that asn1c can not handle `[[` ... `]]` inside CHOICE type.
      
      1. Modify asn1p_y.y and asn1p_y.c to mimic the approach for handling extension
         group inside SEQUENCE type.
      
      2. Modify asn1c_C.c to use 'ext1', 'ext2' ... as extension groups names.
      3d76a039
  3. 15 Sep, 2018 1 commit
    • Bi-Ruei, Chiu's avatar
      Fix the problem that NGAP ASN.1 can not generate C files · 995c5bd4
      Bi-Ruei, Chiu authored
      Because TAIItem and TAIList exist in NAGP-IEs module and NGAP-PDU
      module, so name conflict condition occurs.
      
      Previous returned value from asn1p_oid_compare() in asn1f_check_duplicate()
      is incorrectly checked. Fix it by adding additional ASN1FIX flag
      A1F_COMPOUND_NAMES which is set in asn1c.c.
      995c5bd4
  4. 16 Aug, 2018 2 commits
  5. 21 Jun, 2018 1 commit
    • Bi-Ruei, Chiu's avatar
      Fix reference comes from another module · ec830d70
      Bi-Ruei, Chiu authored
      In ASN.1 of 38.331 rev 15.2.1, module NR-InterNodeDefinitions
      imports GapConfig from NR-RRC-Definition module. It should treat
      
        SetupRelease { GapConfig }
      
      in module NR-InterNodeDefinitions the same as the one in
      module NR-RRC-Definition.
      ec830d70
  6. 31 May, 2018 2 commits
    • Bi-Ruei, Chiu's avatar
      Regenerte test cases · 054f06c2
      Bi-Ruei, Chiu authored
      054f06c2
    • Bi-Ruei, Chiu's avatar
      Add min and max value of INTEGER(min..max) to asn_constant.h · efd2af41
      Bi-Ruei, Chiu authored
      For the following ASN.1 excerpt, the value of these Types will
      be checked against its valid range in their corresponding
      constraint functions.
      
      DRB-Identity ::= INTEGER(1..32)
      RSRP-Range   ::= INTEGER(0..97)
      RSRQ-Range   ::= INTEGER(0..34)
      
      Sometime it is convenient for application being aware of these
      min and max values.
      
      This commit generate the following macro defintions in
      asn_constant.h :
      
      \#define min_val_DRB_Identity (1)
      \#define max_val_DRB_Identity (32)
      \#define min_val_RSRP_Range (0)
      \#define max_val_RSRP_Range (97)
      \#define min_val_RSRQ_Range (0)
      \#define max_val_RSRQ_Range (34)
      efd2af41
  7. 30 May, 2018 1 commit
    • Bi-Ruei, Chiu's avatar
      Fix the problem when ActualParameter to parameterized type is a Type · d64be68b
      Bi-Ruei, Chiu authored
      When ActualParameter to a parameterized type is a Type, commit
      59b9e705 will produce C struct types using ActualParameter,
      which are conflict with the C struct types for these Types themselves.
      
      For example, the following typedef has duplicate definition of
      UCI_OnPUSCH_t :
      
      typedef struct UCI_OnPUSCH {
      	UCI_OnPUSCH_PR present;
      	union UCI_OnPUSCH_u {
      		NULL_t	 release;
      		UCI_OnPUSCH_t	 setup;
      	} choice;
      
      	/* Context for parsing across buffer boundaries */
      	asn_struct_ctx_t _asn_ctx;
      } UCI_OnPUSCH_t;
      
      With this commit, if ActualParameter is a Type, then prefix it
      with Parameterized Type name.
      
      typedef struct SetupRelease_UCI_OnPUSCH {
      	SetupRelease_UCI_OnPUSCH_PR present;
      	union SetupRelease_UCI_OnPUSCH_u {
      		NULL_t	 release;
      		UCI_OnPUSCH_t	 setup;
      	} choice;
      
      	/* Context for parsing across buffer boundaries */
      	asn_struct_ctx_t _asn_ctx;
      } SetupRelease_UCI_OnPUSCH_t;
      
      As for ActualParameter is ObjectSet, used in S1AP ... etc, it doesn't
      prefix generated typedefs for keeping names shorter.
      
      This commit can replace item 3 of
      
      https://github.com/vlm/asn1c/issues/282#issuecomment-390838895
      
      which solve part of #282.
      d64be68b
  8. 19 Apr, 2018 1 commit
    • Bi-Ruei, Chiu's avatar
      Fix item 2 of issue 254 · 0bb89078
      Bi-Ruei, Chiu authored
      1. Record the de-referenced expression to newly added field ref_expr
         of strcut asn1p_ref_t.
      2. In function asn1c_make_identifier(), not only check whehter there
         is name clash occurred for this asn1p_expr_t but also the referenced
         expression to determine whether an additional module name to be added.
      3. Change signature of some functions and variables to eliminate warning
         messages when const type pointer, i.e. const asn1p_ref_t *, variables
         versus, non-const * type pointer, i.e. asn1p_ref_t *, varibles are
         used. E.g.:
         warning: assignment discards ‘const’ qualifier from pointer target type
      0bb89078
  9. 12 Apr, 2018 2 commits
  10. 21 Mar, 2018 6 commits
  11. 14 Mar, 2018 3 commits
  12. 09 Mar, 2018 2 commits
  13. 08 Mar, 2018 5 commits
  14. 07 Mar, 2018 1 commit
  15. 06 Mar, 2018 1 commit
  16. 05 Mar, 2018 4 commits
  17. 09 Feb, 2018 1 commit
  18. 02 Feb, 2018 1 commit
  19. 26 Jan, 2018 4 commits