forked from ethersex/ethersex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
atmega644.config
1221 lines (1201 loc) · 36.5 KB
/
atmega644.config
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Automatically generated by make menuconfig: don't edit
#
#
# General Setup
#
ARCH=ARCH_AVR
ARCH_AVR=y
# ARCH_HOST is not set
# atmega8 is not set
# atmega88 is not set
# atmega128 is not set
# atmega16 is not set
# atmega162 is not set
# atmega168 is not set
# atmega168p is not set
# atmega169 is not set
# atmega32 is not set
# atmega328p is not set
# atmega32u4 is not set
# atmega64 is not set
MCU=atmega644
atmega644=y
# atmega644p is not set
# atmega1284p is not set
# atmega2560 is not set
# at90can32 is not set
# at90can64 is not set
# at90can128 is not set
FREQ=7372800
# alpengluehn is not set
# antares_I is not set
# antares_IO is not set
# antares_O is not set
# Arduino_Duemilanove is not set
# arduino_mega2560_r3 is not set
# arduino_pro_micro is not set
# arduino_pro_mini is not set
# beteigeuze is not set
# conrad_probot is not set
# ehaserl is not set
# etherrape is not set
# Fimser is not set
# fnordlicht_servo is not set
# generic_usb_teensy is not set
# hr20 is not set
# Jackalope is not set
# JeeLinkv2 is not set
# lome6 is not set
# MicroWebServer is not set
# netio_addon is not set
# netio_bsbport is not set
# netio is not set
# other is not set
# pollin_evalboard_addon is not set
# pollin_evalboard is not set
# pollin_funkevalboard is not set
# pram_homenode is not set
HARDWARE=pram_logger
pram_logger=y
# pram_pollin is not set
# radig_web is not set
# thermy is not set
# USBrfm12stick is not set
# volkszaehler_so_server is not set
# CPU_SLEEP is not set
# SRAM_SUPPORT is not set
# SRAM_MEMTEST_ON_BOOT is not set
# BOOTLOADER_SUPPORT is not set
# BOOTLOADER_JUMP is not set
BOOTLOADER_SIZE=8192
BOOTLOADER_START_ADDRESS=0xE000
FLASH_SIZE=0x10000
EEPROM_SIZE=0x800
RAM_SIZE=0x1000
FLASH_PAGESIZE=0x100
EEPROM_PAGESIZE=0x8
# CRC_PAD_SUPPORT is not set
# MBR_SUPPORT is not set
# TEENSY_SUPPORT is not set
# SPI_TIMEOUT is not set
# USART_SPI_SUPPORT is not set
# SOFT_SPI_SUPPORT is not set
GIT_VERSION="25626bac"
# DEBUG_DISCARD_SOME is not set
# DEBUG is not set
# DEBUG_USE_SYSLOG is not set
# DEBUG_SERIAL_USART_SUPPORT is not set
# SOFT_UART_SUPPORT is not set
# DEBUG_USE_WATCHDOG is not set
# DEBUG_HOOK is not set
# DEBUG_RESET_REASON is not set
#
# Periodic / Scheduler
#
CONF_MTICKS_PER_SEC=50
# PERIODIC_TIMER3_SUPPORT is not set
CONF_PERIODIC_USE_TIMER=1
# PERIODIC_TIMER_API_SUPPORT is not set
# PERIODIC_ADJUST_SUPPORT is not set
# DEBUG_PERIODIC is not set
# DEBUG_PERIODIC_ECMD_SUPPORT is not set
# DEBUG_PERIODIC_WAVEFORMS_SUPPORT is not set
# DEBUG_PERIODIC_OC1A_SUPPORT is not set
# SCHEDULER_SUPPORT is not set
# SCHEDULER_DYNAMIC_SUPPORT is not set
CONF_SCHEDULER_NUM_DYNAMIC_TIMERS=8
# DEBUG_SCHEDULER_SUPPORT is not set
STATUSLEDS=y
# STATUSLED_POWER_SUPPORT is not set
# STATUSLED_BOOTED_SUPPORT is not set
# STATUSLED_NETLINK_SUPPORT is not set
# STATUSLED_TX_SUPPORT is not set
# STATUSLED_RFM12_TX_SUPPORT is not set
# STATUSLED_ZBUS_TX_SUPPORT is not set
# STATUSLED_IRMP_TX_SUPPORT is not set
# STATUSLED_EMS_TX_SUPPORT is not set
# STATUSLED_RX_SUPPORT is not set
# STATUSLED_RFM12_RX_SUPPORT is not set
# STATUSLED_ZBUS_RX_SUPPORT is not set
# STATUSLED_IRMP_RX_SUPPORT is not set
# STATUSLED_EMS_RX_OK_SUPPORT is not set
# STATUSLED_ERROR_SUPPORT is not set
# STATUSLED_EMS_RX_FAIL_SUPPORT is not set
# STATUSLED_HB_ACT_SUPPORT is not set
# STATUSLED_HEARTBEAT_SUPPORT is not set
# STATUSLED_RFM12_TX_ACT_SUPPORT is not set
# STATUSLED_RFM12_RX_ACT_SUPPORT is not set
# STATUSLED_ZBUS_TX_ACT_SUPPORT is not set
# STATUSLED_ZBUS_RX_ACT_SUPPORT is not set
# STATUSLED_EMS_TX_ACT_SUPPORT is not set
# STATUSLED_EMS_RX_ACT_SUPPORT is not set
# STATUSLED_ECMD_ACT_SUPPORT is not set
# CRYPTO_SUPPORT is not set
# CAST5_SUPPORT is not set
# MD5_SUPPORT is not set
# SHA1_SUPPORT is not set
# VFS_SUPPORT is not set
# VFS_DF_SUPPORT is not set
# VFS_INLINE_SUPPORT is not set
# CONFIG_INLINE_SUPPORT is not set
# VFS_CONFIG_INLINE_SUPPORT is not set
# MOTD_INLINE_SUPPORT is not set
# RADIO_INLINE_SUPPORT is not set
# I2C_INLINE_SUPPORT is not set
# VFS_IO_INLINE_SUPPORT is not set
# KTY_INLINE_SUPPORT is not set
# ADC_INLINE_SUPPORT is not set
# ONEWIRE_INLINE_SUPPORT is not set
# HAT_INLINE_SUPPORT is not set
# CAMERA_INLINE_SUPPORT is not set
# NAMED_PIN_INLINE_SUPPORT is not set
# STELLA_INLINE_SUPPORT is not set
# MOTORCURTAIN_INLINE_SUPPORT is not set
# MSR1_INLINE_SUPPORT is not set
# TO1_INLINE_SUPPORT is not set
# MCUF_INLINE_SUPPORT is not set
# UPNP_INLINE_SUPPORT is not set
# LCD_INLINE_SUPPORT is not set
# NMEA_INLINE_SUPPORT is not set
# PWM_SERVO_INLINE_SUPPORT is not set
# CW_INLINE_SUPPORT is not set
# DMX_STORAGE_INLINE_SUPPORT is not set
# WOL_INLINE_SUPPORT is not set
# VFS_INLINE_INLINESVG_SUPPORT is not set
# VFS_INLINE_HTML5_RANGE_FF_SUPPORT is not set
# VFS_INLINE_HTML_CLEAN_SUPPORT is not set
# VFS_INLINE_OBSOLETE_BROWSER_SUPPORT is not set
# DEBUG_INLINE_DUMMY is not set
# DEBUG_INLINE_GZ is not set
# DEBUG_INLINE_DISABLE_GZ is not set
# VFS_HOST_SUPPORT is not set
# VFS_SD_SUPPORT is not set
# VFS_EEPROM_SUPPORT is not set
# VFS_EEPROM_RAW_SUPPORT is not set
# VFS_DC3840_SUPPORT is not set
# DATAFLASH_SUPPORT is not set
# DEBUG_FS is not set
# DEBUG_FS_INODETABLE is not set
# DEBUG_FS_MARK is not set
# VFS_EEPROM_DEBUG_SUPPORT is not set
# PAM_SUPPORT is not set
# CONTROL6_SUPPORT is not set
#
# Network
#
CONF_HOSTNAME="solarlog"
NET_MAX_FRAME_LENGTH=500
ENC28J60_SUPPORT=y
CONF_ENC_MAC="02:ca:fe:66:66:66"
# IPV6_STATIC_SUPPORT is not set
CONF_ENC_IP="10.75.14.196"
CONF_ENC_IP4_NETMASK="255.255.255.0"
# IEEE8021Q_SUPPORT is not set
CONF_ENC_ECOCON=ECOCON_UNSET
ECOCON_UNSET=y
# ECOCON_6 is not set
# ECOCON_4 is not set
# ECOCON_3 is not set
# ECOCON_2 is not set
# ECOCON_1 is not set
# ECOCON_0 is not set
# DEBUG_ENC28J60 is not set
# DEBUG_INTERRUPT is not set
# DEBUG_REV4_WORKAROUND is not set
ETHERNET_SUPPORT=y
# TAP_SUPPORT is not set
CONF_TAP_MAC="ac:de:48:fd:0f:d0"
# IPV6_STATIC_SUPPORT is not set
CONF_TAP_IP="192.168.23.244"
CONF_TAP_IP4_NETMASK="255.255.255.0"
CONF_TAP_LOCALIP="192.168.23.1"
# IEEE8021Q_SUPPORT is not set
# RFM12_IP_SUPPORT is not set
# RFM12_IP_RFM12_0 is not set
# RFM12_IP_RFM12_1 is not set
# RFM12_IP_RFM12_2 is not set
CONF_RFM12_FREQ=RFM12_FREQ_433920
RFM12_FREQ_433920=y
# RFM12_FREQ_869775 is not set
# RFM12_FREQ_869800 is not set
# RFM12_FREQ_869825 is not set
# RFM12_FREQ_869850 is not set
# RFM12_FREQ_869875 is not set
# RFM12_FREQ_869900 is not set
# RFM12_FREQ_869925 is not set
# CONF_RFM12_SLOW_SPI is not set
# CONF_RFM12B_SUPPORT is not set
CONF_RFM12_BAUD=19200
CONF_RFM12_IP="192.168.5.1"
CONF_RFM12_IP4_NETMASK="255.255.255.0"
# RFM12_SOURCE_ROUTE_ALL is not set
# RFM12_PCKT_FWD is not set
# RFM12_ARP_PROXY is not set
# RFM12_DISABLE is not set
# RFM12_RAW_SUPPORT is not set
# USB_SUPPORT is not set
# USB_KEYBOARD_SUPPORT is not set
# USB_HID_KEYBOARD_SEQUENCE_SUPPORT is not set
# USB_HID_KEYBOARD_STATIC_SUPPORT is not set
# USB_HID_KEYBOARD_ECMD_SUPPORT is not set
# USB_MOUSE_SUPPORT is not set
# USB_MOUSE_SEQUENCE_SUPPORT is not set
# USB_NET_SUPPORT is not set
# DEBUG_USB_PROTOCOL is not set
# DEBUG_USB_HID_KEYBOARD is not set
# DEBUG_USB_HID_MOUSE is not set
# ZBUS_SUPPORT is not set
# ZBUS_RAW_SUPPORT is not set
# ROUTER_SUPPORT is not set
UIP_SUPPORT=y
NET_SUPPORT=y
# IPV6_SUPPORT is not set
IPV4_SUPPORT=y
# IP_FORWARDING_SUPPORT is not set
# UIP_TIMEOUT_SUPPORT is not set
CONF_ETHERSEX_GATEWAY="10.75.14.200"
# UIP_MULTI_STACK is not set
# IPCHAIR_SUPPORT is not set
# IPCHAIR_MASQ is not set
TCP_SUPPORT=y
UDP_SUPPORT=y
BROADCAST_SUPPORT=y
ICMP_SUPPORT=y
# DNS_SUPPORT is not set
CONF_DNS_SERVER="192.168.23.254"
# BOOTP_SUPPORT is not set
# BOOTP_TO_EEPROM_SUPPORT is not set
# DHCP_SUPPORT is not set
# OPENVPN_SUPPORT is not set
CONF_OPENVPN_KEY=00000000000000000000000000000000
CONF_OPENVPN_HMAC_KEY=00000000000000000000000000000000
CONF_OPENVPN_IP="192.168.23.244"
CONF_OPENVPN_IP4_NETMASK="255.255.255.0"
# OPENVPN_STATIC_REMOTE is not set
CONF_OPENVPN_PORT=1194
# DEBUG_NET is not set
# DEBUG_NET_CONFIG is not set
# DEBUG_NET_IP6 is not set
# DEBUG_OPENVPN is not set
# DEBUG_ROUTER is not set
# DEBUG_UIP is not set
# DEBUG_UNKNOWN_PACKETS is not set
#
# I/O
#
PORTIO_SCHEME=CONFIG_IO_NONE
CONFIG_IO_NONE=y
# PORTIO_SIMPLE is not set
# PORTIO_FULL_FEATURED is not set
# NAMED_PIN_SUPPORT is not set
# TTY_SUPPORT is not set
TTY_COLS=16
TTY_LINES=4
# TTY_LL_HD44780 is not set
# TTY_LL_S1D15G10 is not set
# TTY_LL_S1D13305 is not set
# TTY_LL_VT100_TELNET is not set
# DEBUG_TTY_LAYER is not set
#
# Port expansion
#
# HC595_SUPPORT is not set
HC595_REGISTERS=5
# HC165_SUPPORT is not set
# HC165_INVERSE_OUTPUT is not set
HC165_REGISTERS=1
# SMS_SUPPORT is not set
SMS_USART_0=y
SMS_USE_USART=0
# DEBUG_SMS is not set
#
# ADC / DAC
#
# ADC_SUPPORT is not set
CONFIG_ADC_AREF=y
# CONFIG_ADC_AVCC is not set
# CONFIG_ADC_1_1 is not set
# CONFIG_ADC_2_56 is not set
ADC_REF=ADC_AREF
# HR20_TEMP_SUPPORT is not set
# ADC_VOLTAGE_SUPPORT is not set
# NEED_TEMP2TEXT is not set
# KTY_SUPPORT is not set
# ADS7822_SUPPORT is not set
# DAC_SUPPORT is not set
# TLC5620_SUPPORT is not set
# LTC1257_SUPPORT is not set
CONF_LTC1257_NUM_DEVICES=4
# DEBUG_LTC1257_CORE is not set
# DEBUG_LTC1257_ECMD is not set
#
# LCD Displays
#
# HD44780_SUPPORT is not set
# HR20_LCD_SUPPORT_FULL is not set
# GLCD_SUPPORT is not set
# GLCD_SPI_SUPPORT is not set
# GLCD_I2C_SUPPORT is not set
# GLCD_MONO_SUPPORT is not set
# U8G2LIB_SUPPORT is not set
# GLCD_COLOR_SUPPORT is not set
# UCGLIB_SUPPORT is not set
CONF_GLCD_MONO_TYPE=GLCD_MONO_NONE
GLCD_MONO_NONE=y
# GLCD_MONO_HX1230_96x68_SPI is not set
# GLCD_MONO_IL3820_296x128_SPI is not set
# GLCD_MONO_IST3020_ERC19264_SPI is not set
# GLCD_MONO_IST7920_128X128_SPI is not set
# GLCD_MONO_LD7032_60x32_I2C is not set
# GLCD_MONO_LD7032_60x32_SPI is not set
# GLCD_MONO_LS013B7DH03_128x128_SPI is not set
# GLCD_MONO_MAX7219_32x8_SPI is not set
# GLCD_MONO_NT7534_TG12864R_SPI is not set
# GLCD_MONO_PCD8544_84x48_SPI is not set
# GLCD_MONO_PCF8812_96x65_SPI is not set
# GLCD_MONO_S1D1305 is not set
# GLCD_MONO_SH1106_64x32_I2C is not set
# GLCD_MONO_SH1106_64x32_SPI is not set
# GLCD_MONO_SH1106_72x40_I2C is not set
# GLCD_MONO_SH1106_72x40_SPI is not set
# GLCD_MONO_SH1106_128x64_I2C is not set
# GLCD_MONO_SH1106_128x64_SPI is not set
# GLCD_MONO_SH1107_128x128_SPI is not set
# GLCD_MONO_SH1107_128x128_SPI is not set
# GLCD_MONO_SH1122_256x64_SPI is not set
# GLCD_MONO_SH1122_256x64_SPI is not set
# GLCD_MONO_SSD1305_128x32_I2C is not set
# GLCD_MONO_SSD1305_128x32_SPI is not set
# GLCD_MONO_SSD1106_48x64_SPI is not set
# GLCD_MONO_SSD1306_64x32_I2C is not set
# GLCD_MONO_SSD1306_64x32_SPI is not set
# GLCD_MONO_SSD1306_64x48_I2C is not set
# GLCD_MONO_SSD1306_64x48_SPI is not set
# GLCD_MONO_SSD1306_72x40_I2C is not set
# GLCD_MONO_SSD1306_72x40_SPI is not set
# GLCD_MONO_SSD1306_96x16_I2C is not set
# GLCD_MONO_SSD1306_96x16_SPI is not set
# GLCD_MONO_SSD1306_128x64_I2C is not set
# GLCD_MONO_SSD1306_128x64_SPI is not set
# GLCD_MONO_SSD1309_128x64_I2C is not set
# GLCD_MONO_SSD1309_128x64_SPI is not set
# GLCD_MONO_SSD1322_256x64_NHD_SPI is not set
# GLCD_MONO_SSD1325_128x64_I2C is not set
# GLCD_MONO_SSD1325_128x64_SPI is not set
# GLCD_MONO_SSD1326_256x32_ER_I2C is not set
# GLCD_MONO_SSD1326_256x32_ER_SPI is not set
# GLCD_MONO_SSD1327_96x96_I2C is not set
# GLCD_MONO_SSD1327_96x96_SPI is not set
# GLCD_MONO_SSD1327_128x128_SPI is not set
# GLCD_MONO_SSD1329_128x96_SPI is not set
# GLCD_MONO_SSD1606_172x72_SPI is not set
# GLCD_MONO_SSD1607_200x200_SPI is not set
# GLCD_MONO_ST7528_NHD_C160100_I2C is not set
# GLCD_MONO_ST7528_NHD_C160100_SPI is not set
# GLCD_MONO_ST75256_JLX172104_I2C is not set
# GLCD_MONO_ST75256_JLX172104_SPI is not set
# GLCD_MONO_ST75256_JLX256128_I2C is not set
# GLCD_MONO_ST75256_JLX256128_SPI is not set
# GLCD_MONO_ST75256_JLX25664_I2C is not set
# GLCD_MONO_ST75256_JLX25664_SPI is not set
# GLCD_MONO_ST7565_128x64_ZOLEN_SPI is not set
# GLCD_MONO_ST7565_64128N_SPI is not set
# GLCD_MONO_ST7565_EA_DOGM128_SPI is not set
# GLCD_MONO_ST7565_EA_DOGM132_SPI is not set
# GLCD_MONO_ST7565_ERC12864_SPI is not set
# GLCD_MONO_ST7565_LM6059_SPI is not set
# GLCD_MONO_ST7565_NHD_C12832_SPI is not set
# GLCD_MONO_ST7565_NHD_C12864_SPI is not set
# GLCD_MONO_ST7567_132x64_SPI is not set
# GLCD_MONO_ST7567_JLX12864_SPI is not set
# GLCD_MONO_ST7588_JLX12864_I2C is not set
# GLCD_MONO_ST7588_JLX12864_SPI is not set
# GLCD_MONO_UC1601_128x32_I2C is not set
# GLCD_MONO_UC1601_128x32_SPI is not set
# GLCD_MONO_UC1604_JLX19264_I2C is not set
# GLCD_MONO_UC1604_JLX19264_SPI is not set
# GLCD_MONO_UC1608_240x128_I2C is not set
# GLCD_MONO_UC1608_240x128_SPI is not set
# GLCD_MONO_UC1608_ERC240120_I2C is not set
# GLCD_MONO_UC1608_ERC240120_SPI is not set
# GLCD_MONO_UC1608_ERC24064_I2C is not set
# GLCD_MONO_UC1608_ERC24064_SPI is not set
# GLCD_MONO_UC1610_EA_DOGXL160_I2C is not set
# GLCD_MONO_UC1610_EA_DOGXL160_SPI is not set
# GLCD_MONO_UC1611_EA_DOGM240_I2C is not set
# GLCD_MONO_UC1611_EA_DOGM240_SPI is not set
# GLCD_MONO_UC1611_EA_DOGXL240_I2C is not set
# GLCD_MONO_UC1611_EA_DOGXL240_SPI is not set
# GLCD_MONO_UC1611_EW50850_I2C is not set
# GLCD_MONO_UC1611_EW50850_SPI is not set
# GLCD_MONO_UC1638_160x128_SPI is not set
# GLCD_MONO_UC1701_EA_DOGS102_SPI is not set
# GLCD_MONO_UC1701_MINI12864_SPI is not set
# GLCD_HX1230_96x68_SPI_SUPPORT is not set
# GLCD_IL3820_296x128_SUPPORT is not set
# GLCD_IST3020_ERC19264_SUPPORT is not set
# GLCD_IST7920_128X128_SUPPORT is not set
# GLCD_LD7032_60x32_SUPPORT is not set
# GLCD_LS013B7DH03_128x128_SUPPORT is not set
# GLCD_MAX7219_32x8_SUPPORT is not set
# GLCD_NT7534_TG12864R_SUPPORT is not set
# GLCD_PCD8544_84x48_SUPPORT is not set
# GLCD_PCF8812_96x65_SUPPORT is not set
# S1D13305_SUPPORT is not set
# GLCD_SH1106_64x32_SUPPORT is not set
# GLCD_SH1106_72x404_SUPPORT is not set
# GLCD_SH1106_128x64_SUPPORT is not set
# GLCD_SH1107_128x128_SUPPORT is not set
# GLCD_SH1122_256x64_SUPPORT is not set
# GLCD_SSD1305_128x32_SUPPORT is not set
# GLCD_SSD1106_48x64_SUPPORT is not set
# GLCD_SSD1306_64x32_SUPPORT is not set
# GLCD_SSD1306_64x48_SUPPORT is not set
# GLCD_SSD1306_72x40_SUPPORT is not set
# GLCD_SSD1306_96x16_SUPPORT is not set
# GLCD_SSD1306_128x64_SUPPORT is not set
# GLCD_SSD1309_128x64_SUPPORT is not set
# GLCD_SSD1322_256x64_NHD_SUPPORT is not set
# GLCD_SSD1325_128x64_SUPPORT is not set
# GLCD_SSD1326_256x32_ER_SUPPORT is not set
# GLCD_SSD1327_96x96_SUPPORT is not set
# GLCD_SSD1327_128x128_SUPPORT is not set
# GLCD_SSD1329_128x96_SUPPORT is not set
# GLCD_SSD1606_172x72_SUPPORT is not set
# GLCD_SSD1607_200x200_SUPPORT is not set
# GLCD_ST7528_NHD_C160100_SUPPORT is not set
# GLCD_ST75256_JLX172104_SUPPORT is not set
# GLCD_ST75256_JLX256128_SUPPORT is not set
# GLCD_ST75256_JLX25664_SUPPORT is not set
# GLCD_ST7565_128x64_ZOLEN_SUPPORT is not set
# GLCD_ST7565_64128N_SUPPORT is not set
# GLCD_ST7565_EA_DOGM128_SUPPORT is not set
# GLCD_ST7565_EA_DOGM132_SUPPORT is not set
# GLCD_ST7565_ERC12864_SUPPORT is not set
# GLCD_ST7565_LM6059_SUPPORT is not set
# GLCD_ST7565_NHD_C12832_SUPPORT is not set
# GLCD_ST7565_NHD_C12864_SUPPORT is not set
# GLCD_ST7567_132x64_SUPPORT is not set
# GLCD_ST7567_JLX12864_SUPPORT is not set
# GLCD_ST7567_JLX12864_SUPPORT is not set
# GLCD_UC1601_128x32_SUPPORT is not set
# GLCD_ST7567_JLX12864_SUPPORT is not set
# GLCD_UC1608_240x128_SUPPORT is not set
# GLCD_UC1608_ERC240120_SUPPORT is not set
# GLCD_UC1608_ERC24064_SUPPORT is not set
# GLCD_UC1610_EA_DOGXL160_SUPPORT is not set
# GLCD_UC1611_EA_DOGM240_SUPPORT is not set
# GLCD_UC1611_EA_DOGXL240_SUPPORT is not set
# GLCD_ST7567_JLX12864_SUPPORT is not set
# GLCD_UC1638_160x128_SUPPORT is not set
# GLCD_UC1701_EA_DOGS102_SUPPORT is not set
# GLCD_UC1701_MINI12864_SUPPORT is not set
CONF_GLCD_COLOR_TYPE=GLCD_COLOR_NONE
GLCD_COLOR_NONE=y
# GLCD_COLOR_HX8352C_240x400 is not set
# GLCD_COLOR_ILI9163_128x128 is not set
# GLCD_COLOR_ILI9341_240x320 is not set
# GLCD_COLOR_ILI9486_320x480 is not set
# GLCD_COLOR_S1D15G10_130x130 is not set
# GLCD_COLOR_SEPS225_128x128_UNIVISION is not set
# GLCD_COLOR_SSD1331_96x64_UNIVISION is not set
# GLCD_COLOR_SSD1351_128x128 is not set
# GLCD_COLOR_SSD1351_128x128_FT is not set
# GLCD_COLOR_ST7626_98x67 is not set
# GLCD_COLOR_ST7735_128x160 is not set
# GLCD_HX8352C_240x400_SUPPORT is not set
# GLCD_ILI9163_128x128_SUPPORT is not set
# GLCD_ILI9341_240x320_SUPPORT is not set
# GLCD_ILI9486_320x480_SUPPORT is not set
# S1D15G10_SUPPORT is not set
# GLCD_SEPS225_128x128_UNIVISION_SUPPORT is not set
# GLCD_SSD1331_96x64_UNIVISION_SUPPORT is not set
# GLCD_SSD1351_128x128_SUPPORT is not set
# GLCD_SSD1351_128x128_FT_SUPPORT is not set
# ST7626_SUPPORT is not set
# GLCD_ST7735_128x160_SUPPORT is not set
# DEBUG_GLCD_HW_COM is not set
# LCD_SUPPORT is not set
#
# Storage
#
# SD_READER_SUPPORT is not set
# SER_RAM_SUPPORT is not set
#
# I2C
#
# I2C_MASTER_SUPPORT is not set
# I2C_DETECT_SUPPORT is not set
# I2C_GENERIC_SUPPORT is not set
# I2C_24CXX_SUPPORT is not set
# I2C_DS1631_SUPPORT is not set
# I2C_LM75_SUPPORT is not set
# I2C_TMP175_SUPPORT is not set
# I2C_DS13X7_SUPPORT is not set
# I2C_PCF8583_SUPPORT is not set
# I2C_BH1750_SUPPORT is not set
# I2C_TSL2550_SUPPORT is not set
# I2C_TSL2561_SUPPORT is not set
# I2C_BMP085_SUPPORT is not set
# I2C_BMP280_SUPPORT is not set
# I2C_PCA9531_SUPPORT is not set
# I2C_PCA9685_SUPPORT is not set
# I2C_PCF8574X_SUPPORT is not set
# I2C_PCA9555_SUPPORT is not set
# I2C_MAX7311_SUPPORT is not set
# I2C_MCP23017_SUPPORT is not set
# I2C_UDP_SUPPORT is not set
# DEBUG_I2C is not set
# I2C_SLAVE_SUPPORT is not set
# DEBUG_I2C_SLAVE is not set
# CAMERA_SUPPORT is not set
# DC3840_SUPPORT is not set
# CONFIG_DC3840_RES80 is not set
# CONFIG_DC3840_RES160 is not set
# CONFIG_DC3840_RES320 is not set
# CONFIG_DC3840_RES640 is not set
# DC3840_HIGH_COMPRESSION is not set
# DC3840_BLACK_WHITE is not set
DC3840_USART_0=y
DC3840_USE_USART=0
# DC3840_UDP_DEBUG is not set
#
# Radio
#
# FS20_SUPPORT is not set
# FS20_SEND_SUPPORT is not set
# FHT_SEND_SUPPORT is not set
# FS20_RECEIVE_SUPPORT is not set
# FS20_RECEIVE_SENDER is not set
CONF_FS20_SERVICE="merkur"
CONF_FS20_PORT=2701
# FS20_RECEIVE_WS300_SUPPORT is not set
# DEBUG_FS20_REC is not set
# DEBUG_ECMD_FS20 is not set
# DEBUG_FS20_REC_QUEUE is not set
# DEBUG_FS20_REC_VERBOSE is not set
# DEBUG_FS20_SENDER is not set
# DEBUG_FS20_WS300 is not set
# DEBUG_FS20_WS300_VERBOSE is not set
RFM12_ASK_SUPPORT=y
RFM12_ASK_433_SUPPORT=y
RFM12_ASK_433_RFM12_0=y
# RFM12_ASK_433_RFM12_1 is not set
# RFM12_ASK_433_RFM12_2 is not set
RFM12_ASK_433_USE_RFM12=0
# RFM12_ASK_EXTERNAL_FILTER_SUPPORT is not set
# RFM12_ASK_SENSING_SUPPORT is not set
# RFM12_ASK_868_SUPPORT is not set
# DEBUG_ASK_SENSE is not set
# GENERIC_ASK_SUPPORT is not set
# BLUETOOTH_SUPPORT is not set
#
# IR Receivers
#
# RC5_SUPPORT is not set
# RC5_SUPPORT is not set
# RC5_UDP_SUPPORT is not set
CONF_RC5_SERVER="192.168.100.3"
# DEBUG_RC5 is not set
# IRMP_SUPPORT is not set
# IRMP_RX_SUPPORT is not set
# IRMP_TX_SUPPORT is not set
# IRMP_EXTERNAL_MODULATOR is not set
# IRMP_ECMD is not set
# IRMP_SUPPORT_A1TVBOX_PROTOCOL is not set
# IRMP_SUPPORT_ACP24_PROTOCOL is not set
# IRMP_SUPPORT_APPLE_PROTOCOL is not set
# IRMP_SUPPORT_BANG_OLUFSEN_PROTOCOL is not set
# IRMP_SUPPORT_BOSE_PROTOCOL is not set
# IRMP_SUPPORT_DENON_PROTOCOL is not set
# IRMP_SUPPORT_FAN_PROTOCOL is not set
# IRMP_SUPPORT_FDC_PROTOCOL is not set
# IRMP_SUPPORT_GREE_PROTOCOL is not set
# IRMP_SUPPORT_GRUNDIG_PROTOCOL is not set
# IRMP_SUPPORT_IR60_PROTOCOL is not set
# IRMP_SUPPORT_JVC_PROTOCOL is not set
# IRMP_SUPPORT_KASEIKYO_PROTOCOL is not set
# IRMP_SUPPORT_KATHREIN_PROTOCOL is not set
# IRMP_SUPPORT_LEGO_PROTOCOL is not set
# IRMP_SUPPORT_LGAIR_PROTOCOL is not set
# IRMP_SUPPORT_MATSUSHITA_PROTOCOL is not set
# IRMP_SUPPORT_MERLIN_PROTOCOL is not set
# IRMP_SUPPORT_METZ_PROTOCOL is not set
# IRMP_SUPPORT_MITSU_HEAVY_PROTOCOL is not set
# IRMP_SUPPORT_NEC_PROTOCOL is not set
# IRMP_SUPPORT_NEC16_PROTOCOL is not set
# IRMP_SUPPORT_NEC42_PROTOCOL is not set
# IRMP_SUPPORT_NETBOX_PROTOCOL is not set
# IRMP_SUPPORT_NIKON_PROTOCOL is not set
# IRMP_SUPPORT_NOKIA_PROTOCOL is not set
# IRMP_SUPPORT_NUBERT_PROTOCOL is not set
# IRMP_SUPPORT_ONKYO_PROTOCOL is not set
# IRMP_SUPPORT_ORTEK_PROTOCOL is not set
# IRMP_SUPPORT_PANASONIC_PROTOCOL is not set
# IRMP_SUPPORT_PENTAX_PROTOCOL is not set
# IRMP_SUPPORT_RADIO1_PROTOCOL is not set
# IRMP_SUPPORT_RC5_PROTOCOL is not set
# IRMP_SUPPORT_RC6_PROTOCOL is not set
# IRMP_SUPPORT_RC6A_PROTOCOL is not set
# IRMP_SUPPORT_RCCAR_PROTOCOL is not set
# IRMP_SUPPORT_RCII_PROTOCOL is not set
# IRMP_SUPPORT_RCMM12_PROTOCOL is not set
# IRMP_SUPPORT_RCMM24_PROTOCOL is not set
# IRMP_SUPPORT_RCMM32_PROTOCOL is not set
# IRMP_SUPPORT_RECS80_PROTOCOL is not set
# IRMP_SUPPORT_RECS80EXT_PROTOCOL is not set
# IRMP_SUPPORT_ROOMBA_PROTOCOL is not set
# IRMP_SUPPORT_RUWIDO_PROTOCOL is not set
# IRMP_SUPPORT_S100_PROTOCOL is not set
# IRMP_SUPPORT_SAMSUNG_PROTOCOL is not set
# IRMP_SUPPORT_SAMSUNG32_PROTOCOL is not set
# IRMP_SUPPORT_SAMSUNG48_PROTOCOL is not set
# IRMP_SUPPORT_SAMSUNGAH_PROTOCOL is not set
# IRMP_SUPPORT_SIEMENS_PROTOCOL is not set
# IRMP_SUPPORT_SIRCS_PROTOCOL is not set
# IRMP_SUPPORT_SPEAKER_PROTOCOL is not set
# IRMP_SUPPORT_TECHNICS_PROTOCOL is not set
# IRMP_SUPPORT_TELEFUNKEN_PROTOCOL is not set
# IRMP_SUPPORT_THOMSON_PROTOCOL is not set
# IRMP_SUPPORT_VINCENT_PROTOCOL is not set
# REMOTE_IRMP_SUPPORT is not set
REMOTE_IRMP_PORT=10001
# DEBUG_IRMP is not set
# DEBUG_REMOTE_IRMP is not set
# PSB2186_SUPPORT is not set
# ONEWIRE_SUPPORT is not set
# ONEWIRE_DS18XX_SUPPORT is not set
# ONEWIRE_DS2502_SUPPORT is not set
# ONEWIRE_DS2450_SUPPORT is not set
# ONEWIRE_DEVICES is not set
OW_DISCOVER_INTERVAL=600
OW_POLLING_INTERVAL=30
# ONEWIRE_NAMING_SUPPORT is not set
# ONEWIRE_HOOK_SUPPORT is not set
OW_SENSORS_COUNT=10
# ONEWIRE_SNMP_SUPPORT is not set
# ONEWIRE_ECMD_LIST_SUPPORT is not set
# ONEWIRE_ECMD_LIST_VALUES_SUPPORT is not set
# ONEWIRE_ECMD_LIST_POWER_SUPPORT is not set
# DEBUG_OW_POLLING is not set
# DEBUG_ECMD_OW_ROM is not set
# DEBUG_ECMD_OW_LIST is not set
# DEBUG_OW_DS2450_CORE is not set
# DEBUG_OW_DS2450_ECMD is not set
# HR20_INPUT_SUPPORT is not set
# PS2_SUPPORT is not set
# PS2_GERMAN_LAYOUT is not set
# DEBUG_PS2 is not set
# BUTTONS_INPUT_SUPPORT is not set
#
# Humidity & temperature sensors
#
# SHT_SUPPORT is not set
# DHT_SUPPORT is not set
# ZACWIRE_SUPPORT is not set
# ZACWIRE_RAW_SUPPORT is not set
# ZACWIRE_CONVERT306_SUPPORT is not set
# ZACWIRE_CONVERT506_SUPPORT is not set
# ULTRASONIC_SUPPORT is not set
# DEBUG_ULTRASONIC is not set
# HBRIDGE_SUPPORT is not set
# DUAL_HBRIDGE_SUPPORT is not set
# SHARE_ENABLE_HBRIDGE_SUPPORT is not set
# HBRIDGE_INVERTER_SUPPORT is not set
# DEBUG_HBRIDGE is not set
# MCUF_SUPPORT is not set
# MCUF_SERIAL_SUPPORT is not set
MCUF_USART_0=y
MCUF_USE_USART=0
# MCUF_OUTPUT_SUPPORT is not set
# BLP_SUPPORT is not set
# LEDRG_SUPPORT is not set
# MCUF_SERIAL_WORKAROUND_FOR_BAD_MCUF_UDP_PACKETS is not set
# MCUF_SCROLLTEXT_SUPPORT is not set
CONF_MCUF_SCROLLTEXT_STARTUP="Hi I am your ethersex ;-) "
CONF_MCUF_SCROLLTEXT_STARTUP_COLOR=240
CONF_MCUF_SCROLLTEXT_STARTUP_BG_COLOR=1
CONF_MCUF_SCROLLTEXT_STARTUP_SPEED=2
# MCUF_CLOCK_SUPPORT is not set
# MCUF_CLOCK_AUTOSTART_SUPPORT is not set
# MCUF_MODUL_SUPPORT is not set
# MCUF_MODUL_CRON_SUPPORT is not set
# MCUF_MODUL_DISPLAY_MODE_CRON_SEQUENCE is not set
MCUF_MODUL_DISPLAY_MODE_CRON=MCUF_MODUL_DISPLAY_MODE_CRON_RANDOM
MCUF_MODUL_DISPLAY_MODE_CRON_RANDOM=y
# MCUF_MODUL_DISPLAY_MODE_SUPPORT is not set
# MCUF_MODUL_DISPLAY_MODE_SEQUENCE is not set
MCUF_MODUL_DISPLAY_MODE=MCUF_MODUL_DISPLAY_MODE_RANDOM
MCUF_MODUL_DISPLAY_MODE_RANDOM=y
# MCUF_MODUL_DISPLAY_MODE_MANUAL is not set
# MCUF_TEST_GAME_INPUT is not set
# MCUF_CHESS_SUPPORT is not set
# MCUF_BOX_SUPPORT is not set
# MCUF_CLEAN_SUPPORT is not set
# MCUF_SPIRAL_SUPPORT is not set
# MCUF_IMAGE_SUPPORT is not set
# MCUF_MODUL_BORG16_SUPPORT is not set
# MCUF_MODUL_BORG16_XONI_STUDY_SUPPORT is not set
# MCUF_MODUL_BORG16_SNAKE_SUPPORT is not set
# MCUF_MODUL_BORG16_SNAKE_INTERACTIVE_SUPPORT is not set
# DEBUG_MCUF is not set
#
# Protocols
#
# NET_MAX_FRAME_LENGTH_GT_571 is not set
# ARTNET_SUPPORT is not set
CONF_ARTNET_PORT=6454
CONF_ARTNET_INUNIVERSE=1
CONF_ARTNET_OUTUNIVERSE=0
CONF_ARTNET_OUTPUT_IP="192.168.0.255"
# CONF_ARTNET_SEND_POLL_REPLY is not set
# DEBUG_ARTNET is not set
# DALI_SUPPORT is not set
# DALI_RAW_SUPPORT is not set
# DALI_RECEIVE_SUPPORT is not set
# DMX_SUPPORT is not set
DMX_OUTPUT_UNIVERSE=1
DMX_USART_0=y
DMX_USE_USART=0
ECMD_PARSER_SUPPORT=y
# ECMD_REMOVE_BACKSPACE_SUPPORT is not set
# ALIASCMD_SUPPORT is not set
# ECMD_PAM_SUPPORT is not set
# ECMD_SCRIPT_SUPPORT is not set
# ECMD_LOG_VIA_SYSLOG is not set
# ECMD_SERIAL_USART_SUPPORT is not set
# ECMD_TCP_SUPPORT is not set
# ECMD_UDP_SUPPORT is not set
# ECMD_SERIAL_I2C_SUPPORT is not set
# ECMD_USB_SUPPORT is not set
# ECMD_BLUETOOTH_SUPPORT is not set
# ECMD_JABBER_SUPPORT is not set
# ECMD_IRC_SUPPORT is not set
# ECMD_SMS_SUPPORT is not set
# ECMD_EEPROM_SUPPORT is not set
# ECMD_SENDER_SUPPORT is not set
# UECMD_SENDER_SUPPORT is not set
# DISABLE_IPCONF_SUPPORT is not set
# DISABLE_REBOOT_SUPPORT is not set
# IPSTATS_SUPPORT is not set
# FREE_SUPPORT is not set
# ECMD_MIRROR_REQUEST is not set
# DEBUG_ECMD is not set
# DEBUG_ECMD_FS20 is not set
# DEBUG_ECMD_IP is not set
# DEBUG_ECMD_MAC is not set
# DEBUG_ECMD_NET is not set
# DEBUG_ECMD_OW_LIST is not set
# DEBUG_ECMD_OW_ROM is not set
# DEBUG_ECMD_PORTIO is not set
# DEBUG_ECMD_RC5 is not set
# DEBUG_ECMD_SCRIPT is not set
# ELTAKOMS_SUPPORT is not set
# ELTAKOMS_USART_0 is not set
# DEBUG_ELTAKOMS is not set
# EMS_SUPPORT is not set
EMS_BUFFER_LEN=255
EMS_PORT=7950
# EMS_USART_0 is not set
# EMS_DEBUG_STATS is not set
# EMS_PROTO_DEBUG is not set
# EMS_IO_DEBUG is not set
# EMS_ERROR_DEBUG is not set
# FNORDLICHT_BASIC_SUPPORT is not set
FNORDLICHT_BAUDRATE=19200
# FNORDLICHT_USART_0 is not set
# FNORDLICHT_SUPPORT is not set
CONF_FNORDLICHTER=1
# FNORDLICHT_SERVO_SUPPORT is not set
# DEBUG_FNORDLICHT is not set
# HTTPLOG_SUPPORT is not set
CONF_HTTPLOG_SERVICE="volkszaehler.org"
CONF_HTTPLOG_PATH="/httplog/httplog.php"
# CONF_HTTPLOG_INCLUDE_TIMESTAMP is not set
# CONF_HTTPLOG_INCLUDE_UUID is not set
CONF_HTTPLOG_UUID="12345678-9ABC-DEF0-1234-56789ABCDEF0"
HTTPLOG_QUEUE_LEN=10
# DEBUG_HTTPLOG is not set
# IRC_SUPPORT is not set
CONF_IRC_IP="192.168.23.254"
CONF_IRC_PORT=6667
CONF_IRC_CHANNEL="ethersex"
CONF_IRC_USERNAME="ethersex"
CONF_IRC_NICKNAME="ethersex"
CONF_IRC_REALNAME="Ethersex Wollmilchsau"
# IRC_GREET_SUPPORT is not set
# DEBUG_IRC is not set
# MDNS_SD_SUPPORT is not set
# MODBUS_SUPPORT is not set
# MQTT_SUPPORT is not set
MQTT_CONF_SERVER_IP="192.168.23.254"
MQTT_CONF_CLIENTID="ethersex"
# MQTT_CONF_SUPPLY_USERNAME is not set
# MQTT_CONF_SUPPLY_WILL is not set
MQTT_CONF_PREFIX="ethersex"
# MQTT_DYNAMIC_CALLBACKS is not set
MQTT_DYNAMIC_CALLBACK_SLOTS=1
# MQTT_DEBUG is not set
# MQTT_PARSE_DEBUG is not set
# MYSQL_SUPPORT is not set
CONF_MYSQL_IP="192.168.23.254"
CONF_MYSQL_USERNAME="root"
CONF_MYSQL_PASSWORD="password"
CONF_MYSQL_SCHEMA="mavisdb"
# DEBUG_MYSQL is not set
# NETSTAT_SUPPORT is not set
CONF_NETSTAT_SERVICE_IP="188.40.33.175"
CONF_NETSTAT_SERVICE="ethersex.de"
CONF_NETSTAT_API="/~habo/stat/"
# DEBUG_NETSTAT is not set
#
# Radio
#
# RADIO_HW_868 is not set
# PROTO_FS20_SUPPORT is not set
# RFM12_ASK_FS20_TX_SUPPORT is not set
# RFM12_ASK_FS20_RX_SUPPORT is not set
# RFM12_ASK_FHT_SUPPORT is not set
# RFM12_ASK_ESA_SUPPORT is not set
# RFM12_ASK_TX3_SUPPORT is not set
# RFM12_ASK_FS20_SYSLOG is not set
# RFM12_ASK_FS20_SUPPORT is not set
# DEBUG_ASK_FS20 is not set
RADIO_HW_ASK=y
# PROTO_ASK_SUPPORT is not set
ASK_HARDWARE=ASK_HARDWARE_RFM12
ASK_HARDWARE_RFM12=y
# PROTO_2272_SUPPORT is not set
# PROTO_1527_SUPPORT is not set
# PROTO_TEVION_SUPPORT is not set
# PROTO_INTERTECHNO_SUPPORT is not set
# PROTO_INTERTECHNO_SL_SUPPORT is not set
# PROTO_OASEFMMASTER_SUPPORT is not set
# PROTO_FA20RF_SUPPORT is not set
# PROTO_SMOKEDETECTOR_SUPPORT is not set
# SIP_SUPPORT is not set
CONF_SIP_PROXY_IP="192.168.178.1"
CONF_SIP_FROM="621"
CONF_SIP_TO="622"
CONF_SIP_AUTH_USER="621"
CONF_SIP_AUTH_PASS="tester"
# DEBUG_SIP is not set
# SOAP_SUPPORT is not set
# SNMP_SUPPORT is not set
# SENDMAIL_SUPPORT is not set
CONF_SENDMAIL_IP="78.47.210.246"
CONF_SENDMAIL_FROM="root@sex.metafnord.de"
CONF_SENDMAIL_TO="stesie@brokenpipe.de"
# SENDMAIL_AUTH_SUPPORT is not set
# DEBUG_SENDMAIL is not set
# SMS77_SUPPORT is not set
CONF_SMS77_SERVICE="gateway.sms77.de"
CONF_SMS77_USER=""
CONF_SMS77_PASS=""
CONF_SMS77_TO=""
CONF_SMS77_TYPE_CHOICE=CONF_SMS77_TYPE_BASICPLUS
CONF_SMS77_TYPE_BASICPLUS=y
# CONF_SMS77_TYPE_STANDARD is not set
# CONF_SMS77_TYPE_QUALITY is not set
# CONF_SMS77_TYPE_FESTNETZ is not set
# CONF_SMS77_TYPE_FLASH is not set
CONF_SMS77_TYPE="basicplus"
# SMS77_EEPROM_SUPPORT is not set
# DEBUG_SMS77 is not set
# SYSLOG_SUPPORT is not set
CONF_SYSLOG_SERVER="192.168.23.73"
SYSLOG_QUEUE_LEN=10
# TWITTER_SUPPORT is not set
CONF_TWITTER_SERVICE="identi.ca"
CONF_TWITTER_API="/api"
CONF_TWITTER_USERNAME="ethersex"
CONF_TWITTER_PASSWORD=""
CONF_TWITTER_AUTH="ZXRoZXJzZXg6"
# DEBUG_TWITTER is not set
# USTREAM_SUPPORT is not set
CONF_USTREAM_IP="205.188.234.7"
CONF_USTREAM_PORT=80
# DEBUG_USTREAM is not set
# YPORT_SUPPORT is not set
YPORT_USART_0=y
YPORT_USE_USART=0
YPORT_PORT=7970
YPORT_BAUDRATE=115200
YPORT_USART_CONFIG=YPORT_USART_CONFIG_8N1
YPORT_USART_CONFIG_8N1=y
# YPORT_USART_CONFIG_8E2 is not set
YPORT_BUFFER_LEN=32
CONF_YPORT_FLUSH=25
YPORT_FLUSH_SUPPORT=y
# DEBUG_YPORT is not set
# BSBPORT_SUPPORT is not set
# BSBPORT_USART_0 is not set
BSBPORT_PORT=3000
BSBPORT_BAUDRATE=4800
BSBPORT_BUFFER_LEN=500
BSBPORT_FLUSH=25
BSBPORT_MESSAGE_BUFFER_LEN=10
BSBPORT_MESSAGE_MAX_LEN=25
BSBPORT_OWNADDRESS=7
# BSBPORT_POLLING_SUPPORT is not set
# BSBPORT_MQTT_SUPPORT is not set
# DEBUG_BSBPORT_RX is not set
# DEBUG_BSBPORT_TX is not set
# DEBUG_BSBPORT_ECMD is not set
# DEBUG_BSBPORT_MQTT is not set
# MSR1_SUPPORT is not set
MSR1_USART_0=y
MSR1_USE_USART=0
# DEBUG_MSR1 is not set
# TO1_SUPPORT is not set
TO1_USART_0=y
TO1_USE_USART=0
TO1_SENSOR_COUNT=1
# DEBUG_TO1 is not set
# SERIAL_LINE_LOG_SUPPORT is not set
# SERIAL_LINE_LOG_USART_0 is not set
SERIAL_LINE_LOG_TIMEOUT=20
SERIAL_LINE_LOG_EOL=0A
SERIAL_LINE_LOG_COUNT=60
SERIAL_LINE_LOG_BAUDRATE=9600
# SERIAL_LINE_LOG_SPACE_COMPRESSION is not set
# NMEA_SUPPORT is not set
NMEA_USART_0=y
NMEA_USE_USART=0
# STELLA_PROTOCOL_SUPPORT is not set
UDP_STELLA_PORT=2702
# IOUDP_PROTOCOL_SUPPORT is not set
UDP_IO_PORT=2703
# MOTORCURTAIN_PROTOCOL_SUPPORT is not set
UDP_MOTORCURTAIN_PORT=2704
# CW_SUPPORT is not set
CW_WPM=12
# CW_BOOT_SUPPORT is not set
# CW_BEACON_SUPPORT is not set
# CW_PIN_SUPPORT is not set
# CW_PWM_FREQ_SUPPORT is not set
# CW_RFM12_ASK_SUPPORT is not set
# DEBUG_CW is not set
# SGC_SUPPORT is not set
# SGC_USART_0 is not set
SGC_BAUDRATE=9600
# SGC_SHDN_SLEEP_ACTIVE is not set
SGC_SLEEPMODE=0
# SGC_TIMEOUT_COUNTER_SUPPORT is not set
# SGC_ECMD_SEND_SUPPORT is not set