- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
#define max 0x08 //Max number of samples to average/filter
#define byte unsigned char
#define word unsigned int
#define dword unsigned long
#define FILTER 0
#define AVG 1
typedef struct {
word reading[max];
word result[max];
} ResultStct;
static ResultStct x;
static char samp = 0;//filter;
const byte filter_mode = FILTER;
extern int avg_result;
void MYfilter(word input_sample)
{
byte j;
dword X;
x.reading[samp] = input_sample;
if(samp>0){
X=0;
for (j=0;j<=samp;j++){
X += x.reading[j];
}
avg_result = (X >> 3) - 0x0200;
}
// Shift array of results if we hit max
if (samp >= max-1) {
for (j=0;j<max-1;j++){
x.result[j] = x.result[j+1];
x.reading[j] = x.reading[j+1];
}
samp = max-1;
}
else
{
samp++;
} //end if (i => max)
_113 24.07.2013 11:21 # +2
bormand 24.07.2013 12:47 # 0
_113 24.07.2013 12:53 # 0
ЗЫ: А вот 2Кб флеша как раз не хватает(((
bormand 24.07.2013 13:25 # 0
Ладно блин на восьминогой-восьмибитной авр тини было 2кб, но для 16-битного контроллера это как-то совсем не айс...
_113 24.07.2013 13:38 # 0
Error[e104]: Failed to fit all segments into specified ranges. Problem discovered in segment CODE. Unable to place 9 block(s) (0x1c4 byte(s) total) in 0x1ec byte(s) of memory. The problem occurred while processing the segment
bormand 24.07.2013 14:43 # 0
_113 24.07.2013 15:20 # +1
1 974 bytes in segment CODE
49 bytes in segment DATA16_AN
18 bytes in segment DATA16_C
6 bytes in segment DATA16_I
6 bytes in segment DATA16_ID
27 bytes in segment DATA16_Z
8 bytes in segment INTVEC
someone 24.07.2013 11:28 # 0
16-битная архитектура?
_113 24.07.2013 11:59 # +1
Ccik 24.07.2013 12:23 # 0
_113 24.07.2013 12:25 # +2
_113 24.07.2013 12:28 # 0
16-Bit RISC Architecture, 62.5 ns
Instruction Cycle Time
bormand 24.07.2013 15:42 # +1
anonimb84a2f6fd141 24.07.2013 15:48 # −3
bormand 24.07.2013 15:50 # +1
Выложи лучше что-нибудь новое и интересное, ибо созерцание этой черной дыры уже наскучило.
anonimb84a2f6fd141 24.07.2013 15:52 # −3
bormand 24.07.2013 15:56 # +1
anonimb84a2f6fd141 24.07.2013 18:39 # 0