Commit 6ab17525 authored by Denis Filatov's avatar Denis Filatov
Browse files

Keep units in data descriptions

parent 12ddbd19
Loading
Loading
Loading
Loading
+14 −7
Original line number Diff line number Diff line
@@ -131,11 +131,14 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE {
--!
--! @category: Communication information
InterferenceManagementChannel ::= SEQUENCE {
    --! Center of the channel frequency in 10exp+2 Hz (where exp is exponent)
    --! Center of the channel frequency<br>
    --! Units:  10exp+2 Hz (where exp is exponent)
    centreFrequency INTEGER (1 .. 99999),
    --! Width of the channel frequence band in 10exp Hz (where exp is exponent)
    --! Width of the channel frequence band<br>
    --! Units: 10exp Hz (where exp is exponent)
    channelWidth    INTEGER (0 .. 9999),
    --! Exponent of the power of 10 in Mhz
    --! Exponent of the power of 10<br>
    --! Units: MHz
    exponent        INTEGER (0 .. 15) 
}

@@ -181,13 +184,17 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl
MitigationPerTechnologyClass ::= SEQUENCE {
     --! Channel access technology in which this mitigation is applied.
   accessTechnologyClass  AccessTechnologyClass, 
     --! Duty cycle limit in 0.01% steps
     --! Duty cycle limit<br>
     --! Units: 0.01% of steps
   lowDutyCycle  INTEGER (0 .. 10000) OPTIONAL, 
     --! Power reduction in dB
     --! Power reduction<br>
     --! Units: dB
   powerReduction INTEGER (0 .. 30) OPTIONAL,
     --! Idle time limit in ms as defined in ETSI TS 103 175.
     --! Idle time limit, as defined in ETSI TS 103 175.<br>
     --! Units: ms
   dmcToffLimit   INTEGER (0 .. 1200) OPTIONAL,   
     --! Transmission duration limit in ms, as defined in ETSI EN 302 571.
     --! Transmission duration limit, as defined in ETSI EN 302 571.<br>
     --! Units: ms
   dmcTonLimit   INTEGER (0 .. 20) OPTIONAL,   
   ...
}