project.GetDeviceNameList
|
This function displays the list of the device names of the microcontroller.
[Specification format]
project.GetDeviceNameList(micomType, nickName = "")
|
[Argument(s)]
|
|
micomType
|
Specify the microcontroller type of a new project.
The types that can be specified are shown below.
|
|
|
MicomType.RH850
|
Project for RH850
|
MicomType.RX
|
Project for RX
|
MicomType.V850
|
Project for V850
|
MicomType.RL78
|
Project for RL78
|
MicomType.K0R
|
Project for 78K0R
|
MicomType.K0
|
Project for 78K0
|
nickName
|
Specify the nickname of the microcontroller by a string (default: not specified).
Specify a character string displayed in the first layer of the [Using microcontroller] list in the Create Project dialog box that is used to create a new project.
|
[Return value]
List of device names
[Detailed description]
- | This function displays the list of the device names of the microcontroller specified by micomType. |
- | When nickName is specified, only the names of the devices specified by nickName are displayed. |
[Example of use]
>>>project.GetDeviceNameList(MicomType.RL78)
R5F10BAF
R5F10AGF
R5F10BAG
R5F10BGG
........
>>>devlist = project.GetDeviceNameList(MicomType.RL78, "RL78/F13 (ROM:128KB)")
R5F10BAG
R5F10BGG
........
>>>
|