This is code from Chapter 6.1 of the qiskit textbook, which shows a job being run. How would you change the first line of the backend.run() command, the schedules parameter, in order to use it for a measurement for a constant pulse shape. The schedules parameter from the given code represents a frequency sweep that was defined earlier in the qiskit textbook. I want to keep the other parameters of backend.run the same and change the schedules part to something else and use this command on a constant pulse shape. I don't know exactly how to modify the schedules part of the command properly.
num_shots_per_frequency = 1024
job = backend.run(schedules, meas_level=1, meas_return='avg', shots=num_shots_per_frequency)