hello,I'm a new user of dsp/bios .we now do a project with OMAP-L137,we want to use dsp/bios as the OS,but when i try to creat a dsp/bios projecct with ccs following the steps said in the internet,i run into a problem,when i compile the project,it echo a lot of erros in *.cdb file,the detail is:
js: "./luo.cdb", line 4: identifier is a reserved word
js: class Module {
js: .....^
js: "./luo.cdb", line 5: missing name after :: operator
js: prop Visible :: 1
js: ....................^
js: "./luo.cdb", line 6: missing name after :: operator
js: prop Writable :: 1
js: .....................^
js: "./luo.cdb", line 7: missing name after :: operator
js: prop IsConfMod :: (if self.gNumOf > 0 {1} else {0})
js: ......................^
js: "./luo.cdb", line 8: missing name after :: operator
js: prop NoGen :: 0
js: ..................^
js: "./luo.cdb", line 9: missing name after :: operator
js: prop IsDirty :: ($a = self.gDirty, self.gDirty = 0, $a)
js: ....................^
js: "./luo.cdb", line 10: missing name after :: operator
js: prop dataSize :: 0
js: .....................^
js: "./luo.cdb", line 11: illegal character
js: prop error :: # ("Error: ", self.name, $1)
js: ..................^
js: "./luo.cdb", line 11: missing name after :: operator
js: prop error :: # ("Error: ", self.name, $1)
js: ..................^
js: "./luo.cdb", line 12: missing name after :: operator
js: prop warning :: ("Warning ...", self.name, $1)
js: ....................^
js: "./luo.cdb", line 13: missing name after :: operator
js: prop minBit :: ($a = 0, while (($1 & (1 << $a)) && $a < 32) {++$a}, $a)
js: ...................^
js: "./luo.cdb", line 14: missing name after :: operator
js: prop name :: ("<unnamed module>")
js: .................^
js: "./luo.cdb", line 15: missing name after :: operator
js: prop numBit :: ($a = $b = 0, while ($a < 32) {if ($1 & (1 << $a)) {++$b} }, $b)
js: ...................^
js: "./luo.cdb", line 18: identifier is a reserved word
js: class ObjectMgr {
js: .....^
js: "./luo.cdb", line 20: missing ; before statement
js: prop CanCreate :: (if (self.gNumOf < self.maxObjs()) {self.localCanCreate()} else {self.warning("Maximum number of objects already created")})
js: ..................^
js: "./luo.cdb", line 21: missing name after :: operator
js: prop CanDelete :: (if (self.iDelMsg == "ok" || (self.iDelUser == self.gUser)) {if (self.iId >= 0 && self.iIsUsed) {self.localCanDelete()} else {self.warning("Object already deleted")}} else {self.warning(self.iDelMsg)})
js: ......................^
js: "./luo.cdb", line 22: missing name after :: operator
js: prop Create :: ((self.gUser = (if $0 > 0 {$1} else {"USER"})), if (($a = self.CanCreate()) == "ok") {if (($a = self.localCreate()) == "ok") {if (self.iIsUsed == 0) {self.mkId(if $0 > 1 {$2} else {-1}), self.iIsUsed = 1, GlobalStatus.gDirty = 1, self.gDirty = 1} } } , (self.gUser = "USER"), $a)
js: ...................^
js: "./luo.cdb", line 23: missing name after :: operator
js: prop Delete :: ((self.gUser = (if $0 > 0 {$1} else {"USER"})), if (($a = self.CanDelete()) == "ok") {if (($a = self.localDelete()) == "ok") {self.rmId(self.iId), self.iIsUsed = 0, GlobalStatus.gDirty = 1, self.gDirty = 1} } , (self.gUser = "USER"), $a)
js: ...................^
js: "./luo.cdb", line 24: missing name after :: operator
js: prop GetSetOf :: (self.gSetOf)
js: .....................^
js: "./luo.cdb", line 25: missing name after :: operator
js: prop GetNumOf :: (self.gNumOf)
js: .....................^
js: "./luo.cdb", line 26: missing name after :: operator
js: prop GetObjId :: (self.iId)
js: .....................^
so anyone can help me ?thank you !