-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapplication.mk
563 lines (499 loc) · 27 KB
/
application.mk
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
# Initialize tool chain
# -------------------------------------------------------------------
#ARM_GCC_TOOLCHAIN = ../../../tools/arm-none-eabi-gcc/4.8.3-2014q1/
AMEBA_TOOLDIR = component/soc/realtek/8195a/misc/iar_utility/common/tools/
FLASH_TOOLDIR = component/soc/realtek/8195a/misc/gcc_utility
CROSS_COMPILE = arm-none-eabi-
# Compilation tools
AR = $(CROSS_COMPILE)ar
CC = $(CROSS_COMPILE)gcc
AS = $(CROSS_COMPILE)as
NM = $(CROSS_COMPILE)nm
LD = $(CROSS_COMPILE)gcc
GDB = $(CROSS_COMPILE)gdb
OBJCOPY = $(CROSS_COMPILE)objcopy
OBJDUMP = $(CROSS_COMPILE)objdump
OS := $(shell uname)
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
PICK = $(AMEBA_TOOLDIR)pick.exe
PAD = $(AMEBA_TOOLDIR)padding.exe
CHKSUM = $(AMEBA_TOOLDIR)checksum.exe
else
PICK = $(AMEBA_TOOLDIR)pick
PAD = $(AMEBA_TOOLDIR)padding
CHKSUM = $(AMEBA_TOOLDIR)checksum
endif
# Initialize target name and target object files
# -------------------------------------------------------------------
all: application manipulate_images
mp: application manipulate_images
TARGET=application
OBJ_DIR=$(TARGET)/Debug/obj
BIN_DIR=$(TARGET)/Debug/bin
# Include folder list
# -------------------------------------------------------------------
INCLUDES =
INCLUDES += -Isrc/c/inc
INCLUDES += -Icomponent/soc/realtek/common/bsp
INCLUDES += -Icomponent/os/freertos
INCLUDES += -Icomponent/os/freertos/freertos_v8.1.2/Source/include
INCLUDES += -Icomponent/os/freertos/freertos_v8.1.2/Source/portable/GCC/ARM_CM3
INCLUDES += -Icomponent/os/os_dep/include
INCLUDES += -Icomponent/soc/realtek/8195a/misc/driver
INCLUDES += -Icomponent/common/api/network/include
INCLUDES += -Icomponent/common/api
INCLUDES += -Icomponent/common/api/platform
INCLUDES += -Icomponent/common/api/wifi
INCLUDES += -Icomponent/common/api/wifi/rtw_wpa_supplicant/src
INCLUDES += -Icomponent/common/application
INCLUDES += -Icomponent/common/application/iotdemokit
INCLUDES += -Icomponent/common/application/google
INCLUDES += -Icomponent/common/media/framework
INCLUDES += -Icomponent/common/example
INCLUDES += -Icomponent/common/example/wlan_fast_connect
INCLUDES += -Icomponent/common/mbed/api
INCLUDES += -Icomponent/common/mbed/hal
INCLUDES += -Icomponent/common/mbed/hal_ext
INCLUDES += -Icomponent/common/mbed/targets/hal/rtl8195a
INCLUDES += -Icomponent/common/network
INCLUDES += -Icomponent/common/network/lwip/lwip_v1.4.1/port/realtek/freertos
INCLUDES += -Icomponent/common/network/lwip/lwip_v1.4.1/src/include
INCLUDES += -Icomponent/common/network/lwip/lwip_v1.4.1/src/include/lwip
INCLUDES += -Icomponent/common/network/lwip/lwip_v1.4.1/src/include/ipv4
INCLUDES += -Icomponent/common/network/lwip/lwip_v1.4.1/port/realtek
INCLUDES += -Icomponent/common/test
INCLUDES += -Icomponent/soc/realtek/8195a/cmsis
INCLUDES += -Icomponent/soc/realtek/8195a/cmsis/device
INCLUDES += -Icomponent/soc/realtek/8195a/fwlib
INCLUDES += -Icomponent/soc/realtek/8195a/fwlib/rtl8195a
INCLUDES += -Icomponent/soc/realtek/8195a/misc/rtl_std_lib/include
INCLUDES += -Icomponent/common/drivers/wlan/realtek/include
INCLUDES += -Icomponent/common/drivers/wlan/realtek/src/osdep
INCLUDES += -Icomponent/common/drivers/wlan/realtek/src/hci
INCLUDES += -Icomponent/common/drivers/wlan/realtek/src/hal
INCLUDES += -Icomponent/common/drivers/wlan/realtek/src/hal/OUTSRC
INCLUDES += -Icomponent/soc/realtek/8195a/fwlib/ram_lib/wlan/realtek/wlan_ram_map/rom
INCLUDES += -Icomponent/common/network/ssl/polarssl-1.3.8/include
INCLUDES += -Icomponent/common/network/ssl/ssl_ram_map/rom
INCLUDES += -Icomponent/common/utilities
INCLUDES += -Icomponent/soc/realtek/8195a/misc/rtl_std_lib/include
INCLUDES += -Icomponent/common/application/apple/WACServer/External/Curve25519
INCLUDES += -Icomponent/common/application/apple/WACServer/External/GladmanAES
INCLUDES += -Icomponent/soc/realtek/8195a/fwlib/ram_lib/usb_otg/include
INCLUDES += -Icomponent/common/video/v4l2/inc
INCLUDES += -Icomponent/common/media/codec
INCLUDES += -Icomponent/common/drivers/usb_class/host/uvc/inc
INCLUDES += -Icomponent/common/drivers/usb_class/device
INCLUDES += -Icomponent/common/drivers/usb_class/device/class
INCLUDES += -Icomponent/common/file_system/fatfs
INCLUDES += -Icomponent/common/file_system/fatfs/r0.10c/include
INCLUDES += -Icomponent/common/drivers/sdio/realtek/sdio_host/inc
INCLUDES += -Icomponent/common/audio
INCLUDES += -Icomponent/common/drivers/i2s
INCLUDES += -Icomponent/common/application/xmodem
# Source file list
# -------------------------------------------------------------------
SRC_C =
DRAM_C =
#cmsis
SRC_C += component/soc/realtek/8195a/cmsis/device/system_8195a.c
#console
SRC_C += component/common/api/at_cmd/atcmd_ethernet.c
SRC_C += component/common/api/at_cmd/atcmd_lwip.c
SRC_C += component/common/api/at_cmd/atcmd_sys.c
SRC_C += component/common/api/at_cmd/atcmd_wifi.c
SRC_C += component/common/api/at_cmd/log_service.c
SRC_C += component/soc/realtek/8195a/misc/driver/low_level_io.c
SRC_C += component/soc/realtek/8195a/misc/driver/rtl_consol.c
#network - api
SRC_C += component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_eap_config.c
SRC_C += component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_p2p_config.c
SRC_C += component/common/api/wifi/rtw_wpa_supplicant/wpa_supplicant/wifi_wps_config.c
SRC_C += component/common/api/wifi/wifi_conf.c
SRC_C += component/common/api/wifi/wifi_ind.c
SRC_C += component/common/api/wifi/wifi_promisc.c
SRC_C += component/common/api/wifi/wifi_simple_config.c
SRC_C += component/common/api/wifi/wifi_util.c
SRC_C += component/common/api/lwip_netconf.c
#network - app
SRC_C += component/common/api/network/src/ping_test.c
SRC_C += component/common/utilities/ssl_client.c
SRC_C += component/common/utilities/ssl_client_ext.c
SRC_C += component/common/utilities/tcptest.c
SRC_C += component/common/application/uart_adapter/uart_adapter.c
SRC_C += component/common/utilities/uart_ymodem.c
SRC_C += component/common/utilities/update.c
SRC_C += component/common/api/network/src/wlan_network.c
#network - lwip
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/api_lib.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/api_msg.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/err.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/netbuf.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/netdb.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/netifapi.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/sockets.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/api/tcpip.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/autoip.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/icmp.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/igmp.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/inet_chksum.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_addr.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/ipv4/ip_frag.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/def.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/dhcp.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/dns.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/init.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/lwip_timers.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/mem.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/memp.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/netif.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/pbuf.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/raw.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/stats.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/sys.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/tcp.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/tcp_in.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/tcp_out.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/core/udp.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/src/netif/etharp.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/ethernetif.c
SRC_C += component/common/drivers/wlan/realtek/src/osdep/lwip_intf.c
SRC_C += component/common/network/lwip/lwip_v1.4.1/port/realtek/freertos/sys_arch.c
SRC_C += component/common/network/dhcp/dhcps.c
SRC_C += component/common/network/sntp/sntp.c
#network - mdns
SRC_C += component/common/network/mDNS/mDNSPlatform.c
#os - freertos
SRC_C += component/os/freertos/freertos_v8.1.2/Source/portable/MemMang/heap_5.c
SRC_C += component/os/freertos/freertos_v8.1.2/Source/portable/GCC/ARM_CM3/port.c
SRC_C += component/os/freertos/cmsis_os.c
SRC_C += component/os/freertos/freertos_v8.1.2/Source/croutine.c
SRC_C += component/os/freertos/freertos_v8.1.2/Source/event_groups.c
SRC_C += component/os/freertos/freertos_v8.1.2/Source/list.c
SRC_C += component/os/freertos/freertos_v8.1.2/Source/queue.c
SRC_C += component/os/freertos/freertos_v8.1.2/Source/tasks.c
SRC_C += component/os/freertos/freertos_v8.1.2/Source/timers.c
#os - osdep
SRC_C += component/os/os_dep/device_lock.c
SRC_C += component/os/freertos/freertos_service.c
SRC_C += component/os/os_dep/mailbox.c
SRC_C += component/os/os_dep/osdep_api.c
SRC_C += component/os/os_dep/osdep_service.c
SRC_C += component/os/os_dep/tcm_heap.c
#peripheral - api
SRC_C += component/common/mbed/targets/hal/rtl8195a/analogin_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/dma_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/efuse_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/ethernet_api.c
SRC_C += component/common/drivers/ethernet_mii/ethernet_mii.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/flash_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/gpio_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/gpio_irq_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/i2c_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/i2s_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/log_uart_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/nfc_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/pinmap.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/pinmap_common.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/port_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/pwmout_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/rtc_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/serial_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/sleep.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/spdio_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/spi_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/sys_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/timer_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/us_ticker.c
SRC_C += component/common/mbed/common/us_ticker_api.c
SRC_C += component/common/mbed/common/wait_api.c
SRC_C += component/common/mbed/targets/hal/rtl8195a/wdt_api.c
#peripheral - hal
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_32k.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_adc.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_gdma.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_gpio.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_i2c.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_i2s.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_mii.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_nfc.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_pcm.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_pwm.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_sdr_controller.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_ssi.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_timer.c
SRC_C += component/soc/realtek/8195a/fwlib/src/hal_uart.c
#peripheral - osdep
SRC_C += component/os/freertos/freertos_pmu.c
#peripheral - rtl8195a
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_adc.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gdma.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_gpio.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2c.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_i2s.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_mii.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_nfc.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_pwm.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_ssi.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_timer.c
SRC_C += component/soc/realtek/8195a/fwlib/rtl8195a/src/rtl8195a_uart.c
#peripheral - wlan
#all:SRC_C += component/common/drivers/wlan/realtek/src/core/option/rtw_opt_skbuf.c
#SDRAM
DRAM_C += component/common/api/platform/stdlib_patch.c
#SDRAM - polarssl
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/aes.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/aesni.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/arc4.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/asn1parse.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/asn1write.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/base64.c
SRC_C += component/common/network/ssl/polarssl-1.3.8/library/bignum.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/blowfish.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/camellia.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ccm.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/certs.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/cipher.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/cipher_wrap.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ctr_drbg.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/debug.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/des.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/dhm.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ecp.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ecp_curves.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ecdh.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ecdsa.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/entropy.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/entropy_poll.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/error.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/gcm.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/havege.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/hmac_drbg.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/md.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/md_wrap.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/md2.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/md4.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/md5.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/memory_buffer_alloc.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/net.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/oid.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/padlock.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pbkdf2.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pem.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pkcs5.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pkcs11.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pkcs12.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pk.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pk_wrap.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pkparse.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/pkwrite.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/platform.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ripemd160.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/rsa.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/sha1.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/sha256.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/sha512.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ssl_cache.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ssl_ciphersuites.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ssl_cli.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ssl_srv.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/ssl_tls.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/threading.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/timing.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/version.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/version_features.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/x509.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/x509_crt.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/x509_crl.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/x509_csr.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/x509_create.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/x509write_crt.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/x509write_csr.c
DRAM_C += component/common/network/ssl/polarssl-1.3.8/library/xtea.c
#SDRAM - ssl_ram_map
DRAM_C += component/common/network/ssl/ssl_ram_map/rom/rom_ssl_ram_map.c
DRAM_C += component/common/network/ssl/ssl_ram_map/ssl_ram_map.c
#SDRAM - wigadget
DRAM_C += component/common/application/wigadget/cloud_link.c
DRAM_C += component/common/application/wigadget/shtc1.c
DRAM_C += component/common/application/wigadget/wigadget.c
#utilities
SRC_C += component/common/utilities/cJSON.c
SRC_C += component/common/utilities/http_client.c
SRC_C += component/common/utilities/uart_socket.c
SRC_C += component/common/utilities/webserver.c
SRC_C += component/common/utilities/xml.c
#utilities - example
SRC_C += component/common/example/example_entry.c
SRC_C += component/common/example/uart_atcmd/example_uart_atcmd.c
#utilities - FatFS
SRC_C += component/common/file_system/fatfs/fatfs_ext/src/ff_driver.c
SRC_C += component/common/file_system/fatfs/r0.10c/src/diskio.c
SRC_C += component/common/file_system/fatfs/r0.10c/src/ff.c
SRC_C += component/common/file_system/fatfs/r0.10c/src/option/ccsbcs.c
SRC_C += component/common/file_system/fatfs/disk_if/src/sdcard.c
#utilities - xmodme update
SRC_C += component/common/application/xmodem/uart_fw_update.c
#user
SRC_C += src/c/src/main.c
# Generate obj list
# -------------------------------------------------------------------
SRC_O = $(patsubst %.c,%.o,$(SRC_C))
DRAM_O = $(patsubst %.c,%.o,$(DRAM_C))
SRC_C_LIST = $(notdir $(SRC_C)) $(notdir $(DRAM_C))
OBJ_LIST = $(addprefix $(OBJ_DIR)/,$(patsubst %.c,%.o,$(SRC_C_LIST)))
# Rust lib
OBJ_LIST += $(TARGET)/Debug/rust_obj/librustl8710.o
DEPENDENCY_LIST = $(addprefix $(OBJ_DIR)/,$(patsubst %.c,%.d,$(SRC_C_LIST)))
# Compile options
# -------------------------------------------------------------------
CFLAGS =
CFLAGS += -DM3 -DCONFIG_PLATFORM_8195A -DGCC_ARMCM3 -DARDUINO_SDK
CFLAGS += -mcpu=cortex-m3 -mthumb -g2 -w -O2 -Wno-pointer-sign -fno-common -fmessage-length=0 -ffunction-sections -fdata-sections -fomit-frame-pointer -fno-short-enums -mcpu=cortex-m3 -DF_CPU=166000000L -std=gnu99 -fsigned-char
LFLAGS =
LFLAGS += -mcpu=cortex-m3 -mthumb -g --specs=nano.specs -nostartfiles -Wl,-Map=$(BIN_DIR)/application.map -Os -Wl,--gc-sections -Wl,--cref -Wl,--entry=Reset_Handler -Wl,--no-enum-size-warning -Wl,--no-wchar-size-warning
LIBFLAGS =
all: LIBFLAGS += -Lcomponent/soc/realtek/8195a/misc/bsp/lib/common/GCC/ -l_platform -l_wlan -l_p2p -l_wps -l_rtlstd -l_websocket -l_xmodem -lm -lc -lnosys -lgcc
mp: LIBFLAGS += -Lcomponent/soc/realtek/8195a/misc/bsp/lib/common/GCC/ -l_platform -l_wlan_mp -l_p2p -l_wps -l_rtlstd -l_websocket -l_xmodem -lm -lc -lnosys -lgcc
RAMALL_BIN =
OTA_BIN =
all: RAMALL_BIN = ram_all.bin
all: OTA_BIN = ota.bin
mp: RAMALL_BIN = ram_all_mp.bin
mp: OTA_BIN = ota_mp.bin
# Compile
# -------------------------------------------------------------------
.PHONY: application
application: prerequirement build_info $(SRC_O) $(DRAM_O)
$(LD) $(LFLAGS) -o $(BIN_DIR)/$(TARGET).axf $(OBJ_LIST) $(OBJ_DIR)/ram_1.r.o $(LIBFLAGS) -T./util/rlx8195A-symbol-v02-img2.ld
$(OBJDUMP) -d $(BIN_DIR)/$(TARGET).axf > $(BIN_DIR)/$(TARGET).asm
# Manipulate Image
# -------------------------------------------------------------------
.PHONY: manipulate_images
manipulate_images:
@echo ===========================================================
@echo Image manipulating
@echo ===========================================================
$(NM) $(BIN_DIR)/$(TARGET).axf | sort > $(BIN_DIR)/$(TARGET).nmap
$(OBJCOPY) -j .image2.start.table -j .ram_image2.text -j .ram_image2.rodata -j .ram.data -Obinary $(BIN_DIR)/$(TARGET).axf $(BIN_DIR)/ram_2.bin
$(OBJCOPY) -j .sdr_text -j .sdr_rodata -j .sdr_data -Obinary $(BIN_DIR)/$(TARGET).axf $(BIN_DIR)/sdram.bin
cp component/soc/realtek/8195a/misc/bsp/image/ram_1.p.bin $(BIN_DIR)/ram_1.p.bin
chmod 777 $(BIN_DIR)/ram_1.p.bin
chmod +rx $(PICK) $(CHKSUM) $(PAD)
$(PICK) 0x`grep __ram_image2_text_start__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` 0x`grep __ram_image2_text_end__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` $(BIN_DIR)/ram_2.bin $(BIN_DIR)/ram_2.p.bin body+reset_offset+sig
$(PICK) 0x`grep __ram_image2_text_start__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` 0x`grep __ram_image2_text_end__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` $(BIN_DIR)/ram_2.bin $(BIN_DIR)/ram_2.ns.bin body+reset_offset
$(PICK) 0x`grep __sdram_data_start__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` 0x`grep __sdram_data_end__ $(BIN_DIR)/$(TARGET).nmap | gawk '{print $$1}'` $(BIN_DIR)/sdram.bin $(BIN_DIR)/ram_3.p.bin body+reset_offset
$(PAD) 44k 0xFF $(BIN_DIR)/ram_1.p.bin
cat $(BIN_DIR)/ram_1.p.bin > $(BIN_DIR)/$(RAMALL_BIN)
chmod 777 $(BIN_DIR)/$(RAMALL_BIN)
cat $(BIN_DIR)/ram_2.p.bin >> $(BIN_DIR)/$(RAMALL_BIN)
if [ -s $(BIN_DIR)/sdram.bin ]; then cat $(BIN_DIR)/ram_3.p.bin >> $(BIN_DIR)/$(RAMALL_BIN); fi
cat $(BIN_DIR)/ram_2.ns.bin > $(BIN_DIR)/$(OTA_BIN)
chmod 777 $(BIN_DIR)/$(OTA_BIN)
if [ -s $(BIN_DIR)/sdram.bin ]; then cat $(BIN_DIR)/ram_3.p.bin >> $(BIN_DIR)/$(OTA_BIN); fi
$(CHKSUM) $(BIN_DIR)/$(OTA_BIN) || true
rm $(BIN_DIR)/ram_*.p.bin $(BIN_DIR)/ram_*.ns.bin
# Generate build info
# -------------------------------------------------------------------
.PHONY: build_info
build_info:
@echo \#define UTS_VERSION \"`date +%Y/%m/%d-%T`\" > .ver
@echo \#define RTL8195AFW_COMPILE_TIME \"`date +%Y/%m/%d-%T`\" >> .ver
@echo \#define RTL8195AFW_COMPILE_DATE \"`date +%Y%m%d`\" >> .ver
@echo \#define RTL8195AFW_COMPILE_BY \"`id -u -n`\" >> .ver
@echo \#define RTL8195AFW_COMPILE_HOST \"`$(HOSTNAME_APP)`\" >> .ver
@if [ -x /bin/dnsdomainname ]; then \
echo \#define RTL8195AFW_COMPILE_DOMAIN \"`dnsdomainname`\"; \
elif [ -x /bin/domainname ]; then \
echo \#define RTL8195AFW_COMPILE_DOMAIN \"`domainname`\"; \
else \
echo \#define RTL8195AFW_COMPILE_DOMAIN ; \
fi >> .ver
@echo \#define RTL195AFW_COMPILER \"gcc `$(CC) $(CFLAGS) -dumpversion | tr --delete '\r'`\" >> .ver
@mv -f .ver src/c/inc/$@.h
.PHONY: prerequirement
prerequirement:
@echo ===========================================================
@echo Build $(TARGET)
@echo ===========================================================
mkdir -p $(OBJ_DIR)
mkdir -p $(BIN_DIR)
cp component/soc/realtek/8195a/misc/bsp/image/ram_1.r.bin $(OBJ_DIR)/ram_1.r.bin
chmod 777 $(OBJ_DIR)/ram_1.r.bin
$(OBJCOPY) --rename-section .data=.loader.data,contents,alloc,load,readonly,data -I binary -O elf32-littlearm -B arm $(OBJ_DIR)/ram_1.r.bin $(OBJ_DIR)/ram_1.r.o
$(SRC_O): %.o : %.c
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
$(CC) $(CFLAGS) $(INCLUDES) -c $< -MM -MT $@ -MF $(OBJ_DIR)/$(notdir $(patsubst %.o,%.d,$@))
cp $@ $(OBJ_DIR)/$(notdir $@)
chmod 777 $(OBJ_DIR)/$(notdir $@)
$(DRAM_O): %.o : %.c
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
$(OBJCOPY) --prefix-alloc-sections .sdram $@
$(CC) $(CFLAGS) $(INCLUDES) -c $< -MM -MT $@ -MF $(OBJ_DIR)/$(notdir $(patsubst %.o,%.d,$@))
cp $@ $(OBJ_DIR)/$(notdir $@)
chmod 777 $(OBJ_DIR)/$(notdir $@)
-include $(DEPENDENCY_LIST)
# Generate build info
# -------------------------------------------------------------------
#ifeq (setup,$(firstword $(MAKECMDGOALS)))
# # use the rest as arguments for "run"
# RUN_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
# # ...and turn them into do-nothing targets
# $(eval $(RUN_ARGS):;@:)
#endif
.PHONY: setup
setup:
@echo "----------------"
@echo Setup $(GDB_SERVER)
@echo "----------------"
ifeq ($(GDB_SERVER), openocd)
cp -p $(FLASH_TOOLDIR)/rtl_gdb_debug_openocd.txt $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
cp -p $(FLASH_TOOLDIR)/rtl_gdb_ramdebug_openocd.txt $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
cp -p $(FLASH_TOOLDIR)/rtl_gdb_flash_write_openocd.txt $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt
else
cp -p $(FLASH_TOOLDIR)/rtl_gdb_debug_jlink.txt $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
cp -p $(FLASH_TOOLDIR)/rtl_gdb_ramdebug_jlink.txt $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
cp -p $(FLASH_TOOLDIR)/rtl_gdb_flash_write_jlink.txt $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt
endif
.PHONY: flashburn
flashburn:
@if [ ! -f $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt ] ; then echo Please do \"make setup GDB_SERVER=[jlink or openocd]\" first; echo && false ; fi
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
$(FLASH_TOOLDIR)/Check_Jtag.sh
endif
cp $(FLASH_TOOLDIR)/target_NORMALB.axf $(FLASH_TOOLDIR)/target_NORMAL.axf
chmod 777 $(FLASH_TOOLDIR)/target_NORMAL.axf
chmod +rx $(FLASH_TOOLDIR)/SetupGDB_NORMAL.sh
$(FLASH_TOOLDIR)/SetupGDB_NORMAL.sh
$(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_flash_write.txt
.PHONY: debug
debug:
@if [ ! -f $(FLASH_TOOLDIR)/rtl_gdb_debug.txt ] ; then echo Please do \"make setup GDB_SERVER=[jlink or openocd]\" first; echo && false ; fi
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
$(FLASH_TOOLDIR)/Check_Jtag.sh
cmd /c start $(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
else
$(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_debug.txt
endif
.PHONY: ramdebug
ramdebug:
@if [ ! -f $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt ] ; then echo Please do \"make setup GDB_SERVER=[jlink or openocd]\" first; echo && false ; fi
ifeq ($(findstring CYGWIN, $(OS)), CYGWIN)
$(FLASH_TOOLDIR)/Check_Jtag.sh
cmd /c start $(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
else
$(GDB) -x $(FLASH_TOOLDIR)/rtl_gdb_ramdebug.txt
endif
.PHONY: clean
clean:
rm -rf $(TARGET)
rm -f $(SRC_O) $(DRAM_O)
rm -f $(patsubst %.o,%.d,$(SRC_O)) $(patsubst %.o,%.d,$(DRAM_O))
.PHONY: clean_all
clean_all:
#rm -rf $(ARM_GCC_TOOLCHAIN)
rm -rf $(TARGET)
rm -f $(SRC_O) $(DRAM_O)
rm -f $(patsubst %.o,%.d,$(SRC_O)) $(patsubst %.o,%.d,$(DRAM_O))