Hello. I am going to work with s32k314 this time. Previously, I worked with s32k144.
But I'm not solving the problem. I'm trying to set up a development environment, but if I create an example of s32k344 in the s32ds 3.4 version, only the main statement is created, and none of the related header files are generated.
Also, I would like to write the code in the way I used in the S32K144 instead of the DioConf_DioChannel_Digital_Output_LED_Q172, STD_HIGH).
For example, when I was S32K144,
PCC->PCCn [PCC_PORTA_INDEX] = PCC_PCCn_CGC_MASK;
PCC->PCCn[PCC_PORTB_INDEX] = PCC_PCCn_CGC_MASK;
PTA->PDDR = (0<<0)|(0<<1)|(1<<10)|(1<<11)|(0<<13);
PTB->PDDR = (1<<2)|(1<<5)|(0<<6)|(1<<7);
PTA->PSOR = (1<<10)|(1<<11);
PORTA->PCR[0] = PORT_PCR_MUX(1);
PORTA->PCR[1] = PORT_PCR_MUX(1);
PORTA->PCR[13] = PORT_PCR_MUX(1);
PORTB->PCR[2] = PORT_PCR_MUX(1);
I wrote the code this way.
But S32K3XX doesn't even exist in Cookbook, so it's not building the foundation for how to write that code.
I would like to write a code for S32K3XX in the way I used to do. Is there any material I can find? If not, if you tell me the code that declares the input and output of the GPIO, which is a low-level example I just wrote, I will use it as a base.
S32DS 3.5 can't be used in my computer environment after a while to install it, maybe it recognizes it as a virus or the executable file disappeared. I'm currently using S32DS 3.4.