-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpmod_jysk.c
114 lines (99 loc) · 3.79 KB
/
pmod_jysk.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/******************************************************************************
* Copyright (c) 2016, Xilinx, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION). HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*****************************************************************************/
/******************************************************************************
*
*
* @file pmod_als.c
*
* IOP code (MicroBlaze) for Pmod ALS
* Pmod ALS is read only, and has SPI with MISO only (no MOSI)
* Operations implemented in this application:
* 1. Simple, single read from sensor, and write to data area
* 2. Continuous read from sensor and log to data area
* Switch configuration is done within this program, Pmod should
* be plugged into upper row of connector.
* The Pmod ALS is based on ADC081S021 analog-to-digital converter and
* Vishay Semiconductor's TEMT6000X01.
* http://store.digilentinc.com/pmodals-ambient-light-sensor/
*
* <pre>
* MODIFICATION HISTORY:
*
* Ver Who Date Changes
* ----- --- ------- -----------------------------------------------
* 1.00a cmc 03/29/16 release
* 1.00b pp 05/27/16 fix pmod_init()
*
* </pre>
*
*****************************************************************************/
#include "pmod.h"
// MAILBOX_WRITE_CMD
#define READ_SINGLE_VALUE 0x3
u32 get_sample(){
/*
* ALS data is 8-bit in the middle of 16-bit stream.
* Two bytes need to be read, and data extracted.
*/
u8 raw_data[2];
u8 write_buffer[2];
write_buffer[0] = 0xC0;
spi_transfer(SPI_BASEADDR, 2, raw_data, write_buffer);
return raw_data[0];
}
int main(void)
{
int cmd;
pmod_init(0,1);
config_pmod_switch(SS, MOSI, MISO, SPICLK,
GPIO_4, GPIO_5, GPIO_6, GPIO_7);
// to initialize the device
get_sample();
// Run application
while(1){
// wait and store valid command
while((MAILBOX_CMD_ADDR & 0x01)==0);
cmd = MAILBOX_CMD_ADDR;
switch(cmd){
case READ_SINGLE_VALUE:
// write out reading, reset mailbox
MAILBOX_DATA(0) = get_sample();
MAILBOX_CMD_ADDR = 0x0;
break;
default:
// reset command
MAILBOX_CMD_ADDR = 0x0;
break;
}
}
return(0);
}