change OSMOCOM to lowercase like in master

This commit is contained in:
Dimitri Stolnikov 2013-05-30 17:21:49 +02:00
parent 0e6b6f9ec9
commit 9714f9cd74
4 changed files with 7 additions and 7 deletions

4
README
View File

@ -1,7 +1,7 @@
While primarily being developed for the OsmoSDR hardware, this block as well supports: While primarily being developed for the OsmoSDR hardware, this block as well supports:
* FunCube Dongle through libgnuradio-fcd * FunCube Dongle through libgnuradio-fcd
* OSMOCOM OsmoSDR Devices through libosmosdr * sysmocom OsmoSDR Devices through libosmosdr
* Great Scott Gadgets HackRF through libhackrf * Great Scott Gadgets HackRF through libhackrf
* Ettus USRP Devices through Ettus UHD library * Ettus USRP Devices through Ettus UHD library
* RTL2832U based DVB-T dongles through librtlsdr * RTL2832U based DVB-T dongles through librtlsdr
@ -32,4 +32,4 @@ make
sudo make install sudo make install
sudo ldconfig sudo ldconfig
NOTE: The OSMOCOM source block will appear under 'Sources' category in GRC menu. NOTE: The osmocom source block will appear under 'Sources' category in GRC menu.

View File

@ -485,7 +485,7 @@ class app_top_block(stdgui2.std_top_block, pubsub):
self.set_freq(target_freq) self.set_freq(target_freq)
def main (): def main ():
app = stdgui2.stdapp(app_top_block, "OSMOCOM Spectrum Browser", nstatus=1) app = stdgui2.stdapp(app_top_block, "osmocom Spectrum Browser", nstatus=1)
app.MainLoop() app.MainLoop()
if __name__ == '__main__': if __name__ == '__main__':

View File

@ -347,7 +347,7 @@ def main():
gui=app_gui, # User interface class gui=app_gui, # User interface class
options=options, # Command line options options=options, # Command line options
args=args, # Command line args args=args, # Command line args
title="OSMOCOM Signal Generator", # Top window title title="osmocom Signal Generator", # Top window title
nstatus=1, # Number of status lines nstatus=1, # Number of status lines
start=True, # Whether to start flowgraph start=True, # Whether to start flowgraph
realtime=True) # Whether to set realtime priority realtime=True) # Whether to set realtime priority

View File

@ -104,12 +104,12 @@ self.\$(id).set_bandwidth(\$bw$(n), $n)
<nports>\$nchan</nports> <nports>\$nchan</nports>
</$sourk> </$sourk>
<doc> <doc>
The OSMOCOM block: The osmocom block:
While primarily being developed for the OsmoSDR hardware, this block as well supports: While primarily being developed for the OsmoSDR hardware, this block as well supports:
* FunCube Dongle through libgnuradio-fcd * FunCube Dongle through libgnuradio-fcd
* OSMOCOM OsmoSDR Devices through libosmosdr * sysmocom OsmoSDR Devices through libosmosdr
* Great Scott Gadgets HackRF through libhackrf * Great Scott Gadgets HackRF through libhackrf
* Ettus USRP Devices through Ettus UHD library * Ettus USRP Devices through Ettus UHD library
* RTL2832U based DVB-T dongles through librtlsdr * RTL2832U based DVB-T dongles through librtlsdr
@ -318,7 +318,7 @@ if __name__ == '__main__':
title = 'RTL-SDR' title = 'RTL-SDR'
prefix = 'rtlsdr' prefix = 'rtlsdr'
elif tail.startswith('osmosdr'): elif tail.startswith('osmosdr'):
title = 'OSMOCOM' title = 'osmocom'
prefix = 'osmosdr' prefix = 'osmosdr'
else: raise Exception, 'file %s has wrong syntax!'%tail else: raise Exception, 'file %s has wrong syntax!'%tail