Hi,
As per my understanding, you are trying to install the "Simulink Embedded Coder Target" for Teensy but the toolboxes or blocks are not showing up in Simulink. Please refer to the following steps as a possible workaround for the same:
Refer to the following MathWorks documentation and ensure that the folder you placed in the current directory should have the expected contents.
- Add folder to the MATLAB path using the following command and then re-run. After setup restart MATLAB and Simulink to ensure new paths and blocks are refreshed:
addpath(genpath(pwd)); % Or specify the full path to the teensy folder
savepath;
setup_teensy_target
- Now try to open the Teensy library manually using following command:
open_system('teensy_lib')
Also ensure that the "Arduino Support Package" and "Simulink Support Package for Arduino Hardware" are installed.
Hope this helps!