This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI C/C++ Compiler
dear sir
We are using msp430fg4618 device for a project where we have to give an analog signal from signal generator to the input of the msp device. But we don't know about the pins of msp430 where we will connect the wires output of the signal generator.
please suggest me about the input output pins of msp430fg4618 and if possible provide me a photograph showing the input output pins for analog signal.
thanks.
Hello,
Please see the MSP430FG4618 datasheet. Please see section 4 for pin-out of the devices in the different packages. The User Guide for the device describes how to use each module. You can find some example code for each device/module within MSP430Ware . MSP430ware is available via an independent download, with CCS under TI Resource Explorer, or via the cloud TI Resource Explorer at www.dev.ti.com .
More than likely, you are looking for the ADC Module.
Dear sir,
we are working on a project related to msp430 microcontroller and we need to generate a radioactive signal that we will use for our project ,so can u please suggest some softwares from where we are able to generate a radioactive signal and if possible please provide some links to download the softwares
sir,
Thanks for your reply but i have to write a C program to generate a radioactive signal and that c program should run in IAR embedded workbench so can u please give me or suggest me a c program that will generate a radioactive signal .
What do you mean by "radioactive"? It really depends on what kind of flux and environment. If you are merely simulating a Geiger counter, you can simply create a very short pulse at random times:
psuedocode:
float probability = 0.5
loop:
if getfloatrand > 0.5
turnOnOutputPin
delay 1 microsecond
turnOffOutputPin
endif
goto loop
**Attention** This is a public forum