Hi TI Experts,
A question on usb_dev_serial example from C2000_Ware (V4.02). The example targets 28069 device, and I had some trouble when tring to target my 28062F device.
I imported the example to CCS12.1 workspace, specify device to 28069U, project can be built successfully.
Then I did the following,
1, Modify F2806x_Device.h
#define DSP28_28062P 0
#define DSP28_28062UP 0
#define DSP28_28062PZ 0
#define DSP28_28062UPZ TARGET //I did not find 28062F here
2, Modify Project Property

3,Re-build project, got below errors.
"../28062_RAM_lnk.cmd", line 118: error: program will not fit into available
memory, or the section contains a call site that requires a trampoline that
can't be generated for this section. placement with alignment/blocking fails
for section ".text" size 0x5206 page 0. Available memory ranges:
RAML0_L3 size: 0x2000 unused: 0x2000 max hole: 0x2000
undefined first referenced
symbol in file
--------- ----------------
_ebss_size ./F2806x_CodeStartBranch_ebss_init.obj
_ebss_start ./F2806x_CodeStartBranch_ebss_init.obj
it seems that the error comes with an asm source, but i have no idear how to modify it...
Thanks for anybody who may help on this!