System Integration » History » Version 1

BASTIDE, Paul, 03/23/2016 09:26 AM

1 1 BASTIDE, Paul
h1. System Integration
2 1 BASTIDE, Paul
3 1 BASTIDE, Paul
The system we are proposing in order to achieve the objectives we defined is composed by the following subsystems :
4 1 BASTIDE, Paul
-	The development board (DVB)
5 1 BASTIDE, Paul
-	The DSPIC33F microprocessor of Microchip / Analog-to Digital Converter (ADC)
6 1 BASTIDE, Paul
-	The thermocouple
7 1 BASTIDE, Paul
-	LEDS to monitor the state of the program 
8 1 BASTIDE, Paul
-	The 2-FSK  RF transimter
9 1 BASTIDE, Paul
-	We are developing on the development board rather than the motherboard in order to test and validate our system.
10 1 BASTIDE, Paul
-	As it is in a testing phase, we we also have the In-Circuit-Debugger ICD3 and our computer
11 1 BASTIDE, Paul
The DSPIC33D is monted on the development board. We are using the Cubesat bus on order to distribute the different interfaces.
12 1 BASTIDE, Paul
We are using the ADC already installed in the DSPIC33F to measure the difference of voltage in the thermocouple and to software-tranformit in temperature.
13 1 BASTIDE, Paul
The DVB is fed by a power source, and the ICD3 is fed by the computer.
14 1 BASTIDE, Paul
15 1 BASTIDE, Paul
SUbSYstems and interfaces description
16 1 BASTIDE, Paul
LEDs
17 1 BASTIDE, Paul
We are using standard 5 mm diameter red LEDs as monitors during the unfolding of the program.
18 1 BASTIDE, Paul
We rae connecting them on the BUS connector, with their input side on I/O port 47,43,39,35, 31 and 29, their output  on I/O ports 46,42,38,34,30. During the program, setting the inputs I/O ports to high would turnon the LED, and to Low to turn them off
19 1 BASTIDE, Paul
20 1 BASTIDE, Paul
ADC and interface XX
21 1 BASTIDE, Paul
We are using the already  integrated ADC to recover the voltage on each wire of the thermocouple.
22 1 BASTIDE, Paul
The ADC is a device used to transform a continuous voltage to a digital bit stream. During the process, it has to quantify the analog input. We are taking advantage of that functionality so as to retrieve that quantificatoion and reconvert it to voltage .
23 1 BASTIDE, Paul
The adc is working on a simple. For each ADC, (there is two of them on a DSPIC33F) it sample ints the analog input it has been specified during an interval time wich cannot be smaller than 75 ns. After the sampling has been done it begins the conversion to a 16-bit word, storred in a buffer.  
24 1 BASTIDE, Paul
The ADC is controlled by a set of register, 16-bits words used to store the options of the ADC(the “x” is used to specify the number of the considered ADC) :
25 1 BASTIDE, Paul
-	ADxCON1 : ADCx Control Register 1 : this register contains the following interesting options
26 1 BASTIDE, Paul
o	ADON : ADC ON and OFF signal
27 1 BASTIDE, Paul
o	AD12B : 10-bit or 12-bit Operation Mode : the ADC constore data on 10 or 12 bits in the 16-bit buffer.
28 1 BASTIDE, Paul
o	FORM : Data ouput format : can be one of the following four:
29 1 BASTIDE, Paul
	Signed fractional
30 1 BASTIDE, Paul
	Fractional
31 1 BASTIDE, Paul
	Signed integer
32 1 BASTIDE, Paul
	Integer
33 1 BASTIDE, Paul
o	SSRC : Sample Clock Source Select : select if the clock of the ADC is internally or externally driven
34 1 BASTIDE, Paul
o	ASAM : ADC auto-Start : select wheter the sampling begins automatically after previuous conversion or when manually set
35 1 BASTIDE, Paul
o	SAMP : used to specify when necessary to the adc to start smapling
36 1 BASTIDE, Paul
o	DONE : the hardware store here a “1” when the conversion has been finished, and is reset automatically
37 1 BASTIDE, Paul
-	ADxCON2 : ADCx Control Register 2 : this register contains the following interesting options
38 1 BASTIDE, Paul
o	VCFG  Converter Voltage reference Configuration :   
39 1 BASTIDE, Paul
o	CHIPS : Channel select :  the ADC can scan up to 4 channels (CH0, CH1, CH2, CH3), and we have to select which one(s) we want to use
40 1 BASTIDE, Paul
-	ADxCON3 : ADCx Control Register 3 : this register contains the following interesting options
41 1 BASTIDE, Paul
o	ADRC : ADC Conversion Clock source: internal or external
42 1 BASTIDE, Paul
o	SAMC auto sample Time : set the time took to sample, as a multiple od Tad, which is a period set by the system for unitary conversion, which can’t be mower than 75 ns
43 1 BASTIDE, Paul
o	ADC conversion clock : used to specify Tad by a calculation
44 1 BASTIDE, Paul
-	ADxCHS123 : ADCx Input Channel 1,2,3 Select : used to set the input and ouput of the channels 1,2 and 3, but won’t be used by us.
45 1 BASTIDE, Paul
-	ADxCHS0 : ADCx Input Channel 0 Select : we are to ote here that each channel can buffer one input. It does that by defining sample and sample B, and doing the onversion on either one of them alternatively. Here we will be using only the sample A. The register contains the following interesting fiels :
46 1 BASTIDE, Paul
o	CH0NA : Channel 0 Negative Input select for sample A
47 1 BASTIDE, Paul
o	CH0SA : Channel 0 Positive Input select for sample A : for CH0S/NA, we select the analagog input to read
48 1 BASTIDE, Paul
-	ADxCSSH/L : ADCx Input scan select registers : used to select if the considered input are digitals or analog. If digital is selected, there won’t be any quantification possible with the 
49 1 BASTIDE, Paul
-	ADCxPCFGH/L : ADCx Port configuration registers : used to select if the considered input are digitals or analog. If digital is selected, there won’t be any quantification possible with the ADC
50 1 BASTIDE, Paul
51 1 BASTIDE, Paul
RF Transmitter and Interface 3¶
52 1 BASTIDE, Paul
The RF transmitter is a 2-FSK transmitter suited to ON-OFF modulations of digital signals. It has a serial input port and a RF out port for a dedicated antenna apart from power and ground port.
53 1 BASTIDE, Paul
 
54 1 BASTIDE, Paul
RF Transmitter pinout.
55 1 BASTIDE, Paul
Pin 	Type 	Function 
56 1 BASTIDE, Paul
1 	G 	Ground 
57 1 BASTIDE, Paul
2 	I 	Data input 
58 1 BASTIDE, Paul
4 	G 	Ground 
59 1 BASTIDE, Paul
11 	O 	RF output 
60 1 BASTIDE, Paul
13 	G 	Ground 
61 1 BASTIDE, Paul
15 	P 	+V 
62 1 BASTIDE, Paul
Ground pins (1, 4 and 13) are internally interconnected.
63 1 BASTIDE, Paul
Connection types: G = Ground, P = Power, I = Input, O = Output.
64 1 BASTIDE, Paul
The interface between the motherboard and the transmitter is composed by the set of connections presented below.
65 1 BASTIDE, Paul
66 1 BASTIDE, Paul
 
67 1 BASTIDE, Paul
Monopole antenna and Interface 4
68 1 BASTIDE, Paul
From mission requirements and targeted objectives, the antenna must be omnidirectional. In addition, deployable wired antennas are well suited to Cubesats. For the scope of the project, a simple monopole whip antenna is appropriate.
69 1 BASTIDE, Paul
Antenna design
70 1 BASTIDE, Paul
A typical monopole quarter-wave antenna is built from a radiating wire whose length L is defined as follows:
71 1 BASTIDE, Paul
L=c/(4fc)
72 1 BASTIDE, Paul
Where fc
73 1 BASTIDE, Paul
is the carrier frequency and c
74 1 BASTIDE, Paul
the speed of light.
75 1 BASTIDE, Paul
Since the carrier frequency of the 2-FSK modulator is 433.92 MHz, the required length of the wire is: L = 17.3 cm.
76 1 BASTIDE, Paul
The figure belows shows the designed antenna to be mounted on the payload, connected to the RF transmitter.
77 1 BASTIDE, Paul
 
78 1 BASTIDE, Paul
Monopole wired antenna.
79 1 BASTIDE, Paul
Assembly