element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Personal Blogs
  • Community Hub
  • More
Personal Blogs
Legacy Personal Blogs Wireless Shield module for WS Experimentation
  • Blog
  • Documents
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: russm24
  • Date Created: 29 Jan 2016 9:53 AM Date Created
  • Views 539 views
  • Likes 1 like
  • Comments 1 comment
Related
Recommended

Wireless Shield module for WS Experimentation

russm24
russm24
29 Jan 2016

The module I am building right now is designed for low power applications that require low bandwidth but with a wider range of broadcast frequencies. Currently capable of producing frequencies from 35 MHz to about 4.4 GHz with 812 kHz of bandwidth, the prototype runs at 3.3 while only drawing sub- 70 mA at its maximum output of 16 dBm. Experimentation is very much possible as it accesses a prime spectrum that telecoms would pay a lot of money for to use.

 

image

image

 

These are the components needed:

 

QTYCOMPONENT
1×CC430F5137 Application Specific ICs / Telecom ICs
1×ADF4351 Wideband frequency synthesizer
1×ADEX-10L Passive mixer
2×PSA4-5043+ LNA
12×10 pF capacitor
14×0.1 uF capacitor
2×27 pF capacitor
1×0.0022 uF capacitor
17×100 nF capacitor
4×2 pF capacitor
11×10 uF capacitor
1×100 pF capacitor
2×2.7 pF capacitor
1×470 nF capacitor
2×0.8 pF capacitor
4×13.8 pF capacitor
1×532 pF capacitor
1×1.17 nF capacitor
1×15.9 pF capacitor
2×5 pF capacitor
1×1 nF capacitor
1×120 pF capacitor
2×15 pF capacitor
5×LED Fiber Optics / Emitters
1×10x1 0.1" header
2×8x1 0.1" header
1×6x1 0.1" header
4×18 nH inductor
2×120 ohm choke
2×0.07 uH inductor
4×0.004 uH inductor
1×94 nH inductor Electronic Components / Misc. Electronic Components
2×23 nH inductor
1×19 nH inductor
1×2x1 0.1" header
2×MMCX connector
1×SMA connector
4×330 ohm resistor
1×47k ohm resistor
1×56k ohm resistor, 1%
3×0 ohm resistor
1×23k ohm resistor
1×1k ohm resistor
1×11.3k ohm resistor
1×5.1k ohm resistor
4×10k ohm resistor
2×68k ohm resistor
2×15k ohm resistor
2×DBTC-7-152X+ directional coupler
1×AP1117 regulator
1×0896BM15A0001 balun
2×ADG918 RF switch
1×FOX924 crystal
1×B3744 SAW filter
1×

NX3225GA-26MHZ-TI crystal

 

 

Ease of use is one of the factors taken into account when creating a design. By allowing it to be coupled with a different open-source piece of material such as the Arduino, along with its shield libraries, it is able to create connections between your wireless experiments and your Wifi/BT or whatever interface suits you. These libraries already exist, so there is a nice way to leverage other work and not have to change everything in the process. I also implemented HAL for higher level of functionality, so that there is no need for setting registers and bitmasks. Below are the syntaxes that utilize the module.

 

set_datarate(float) - Sets the datarate of the CC430. Returns 1 if the datarate is outside of what the CC430 can provide.

set_frequency(float) - Sets the transmit and receive frequency. Returns 1 if the frequency is out of bounds. Functionally, this programs the VCO. It may be possible to have separate transmit and receive frequencies, but I'm not sure how long the PLLs take to settle, so for now the HAL will only support a single transmit and receive frequency.

set_power(int) - Sets the transmit power. Returns 1 if out of bounds.

set_mode(string) - Takes in either "tx" or "rx" and puts the device into either transmit or receive mode. Returns 1 if not "tx" or "rx". Functionally, this controls the RF switches.

get_status(void) - Returns a struct of various status information.

get_device_id(void) - Returns device ID. Useful for simple testing.

set_message(char *buf, int length) - Takes in a pointer to a byte array and a length. The buffer is loaded into a FIFO for transmitting. If the buffer is larger than the FIFO, the FIFO is filled and transmitting automatically starts. This process repeats until the FIFO is loaded with the last chunk of data.

transmit_now(void) - This should always be called immediately after set_message(). This will force the transmit FIFO to empty by transmitting, which will send any fractional buffers still in the FIFO that did not fill it completely.

get_message() - Returns a pointer to a byte array that is the size of the receive FIFO. This array contains demodulated data from the CC430. It's up to the user to loop on this function until the end of message identifier is hit.

set_modulation(string) - Takes in "FSK", "GFSK", "MSK", "OOK", or "ASK". Sets the modulation used by the CC430.

  • Sign in to reply
  • clem57
    clem57 over 9 years ago

    Is this your design? would love to see it in action.

    Thanks,

    Clem

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube