Wireless-Innovation-Forum / Citizens-Broadband-Radio-Service-Device

Apache License 2.0
31 stars 19 forks source link

channelType missing in SpectrumInquiry response #51

Closed dgcell20 closed 6 years ago

dgcell20 commented 6 years ago

the channelType is missing in SpectrumInquiry response issue appears to be related to if GAA is used the low and high frequencies were not accepting 3550000000 and 3700000000

cwilliams-ericsson commented 6 years ago

Work around as follows: In CBRSRequestHandler.py, change line of code indicated below in def processSpectrumInquiryResponse():

                if(itemReq["lowFrequency"]>=consts.SPECTRUM_GAA_LOW and itemReq["highFrequency"] < =consts.SPECTRUM_GAA_HIGH):
                    responseChannel["channelType"]="GAA"

ie. change ">" to ">=" and "<" to "<=".

A better solution will:

pawan25062 commented 6 years ago

hi, channelType is missing in SpectrumInquiry response, using master branch. Are these changes available in main master branch?

cwilliams-ericsson commented 6 years ago

Issues 51 & 52 still exist in main branch (channelType missing from Grant Response, channelType missing in Spectrum Inquiry response). Those fixes will be incorporated into next drop.

In the mean time, continue to use the fix provided (see those issue descriptions on GitHub).

Regards,

Chris

From: pawan25062 [mailto:notifications@github.com] Sent: Monday, November 06, 2017 8:19 AM To: Wireless-Innovation-Forum/Citizens-Broadband-Radio-Service-Device Citizens-Broadband-Radio-Service-Device@noreply.github.com Cc: Chris Williams C chris.c.williams@ericsson.com; Comment comment@noreply.github.com Subject: Re: [Wireless-Innovation-Forum/Citizens-Broadband-Radio-Service-Device] channelType missing in SpectrumInquiry response (#51)

hi, channelType is missing in SpectrumInquiry response, using master branch. Are these changes available in main master branch?

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/Wireless-Innovation-Forum/Citizens-Broadband-Radio-Service-Device/issues/51#issuecomment-342145853, or mute the threadhttps://github.com/notifications/unsubscribe-auth/Aa2VtDoxVF2oYDnxVBj9Ic5Wr_ZBxYKXks5szwc-gaJpZM4QP1qf.

dgcell20 commented 6 years ago

Validated